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