-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
33 lines (33 loc) · 962 Bytes
/
vercel.json
File metadata and controls
33 lines (33 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"framework": "vite",
"buildCommand": "pnpm -r build && pnpm --filter @trading-game/web build",
"installCommand": "pnpm install",
"outputDirectory": "apps/web/dist",
"env": {
"ELEVENLABS_API_KEY": "@elevenlabs_api_key",
"VITE_WALLET_CONNECT_PROJECT_ID": "@wallet_connect_project_id",
"VITE_ALCHEMY_API_KEY": "@alchemy_api_key",
"VITE_FIREBASE_API_KEY": "@firebase_api_key",
"VITE_FIREBASE_AUTH_DOMAIN": "@firebase_auth_domain",
"VITE_FIREBASE_PROJECT_ID": "@firebase_project_id",
"VITE_FIREBASE_STORAGE_BUCKET": "@firebase_storage_bucket",
"VITE_FIREBASE_MESSAGING_SENDER_ID": "@firebase_messaging_sender_id",
"VITE_FIREBASE_APP_ID": "@firebase_app_id"
},
"build": {
"env": {
"NODE_OPTIONS": "--max-old-space-size=4096"
}
},
"functions": {
"api/*.ts": {
"runtime": "nodejs20.x"
}
},
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}