mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
25 lines
389 B
JSON
25 lines
389 B
JSON
{
|
|
"version": 2,
|
|
"builds": [
|
|
{
|
|
"src": "server/index.ts",
|
|
"use": "@vercel/node",
|
|
"config": {
|
|
"includeFiles": ["shared/**", "server/**"]
|
|
}
|
|
}
|
|
],
|
|
"routes": [
|
|
{
|
|
"src": "/api/(.*)",
|
|
"dest": "server/index.ts"
|
|
},
|
|
{
|
|
"src": "/(.*)",
|
|
"dest": "server/index.ts"
|
|
}
|
|
],
|
|
"env": {
|
|
"NODE_ENV": "production"
|
|
}
|
|
}
|