forked from Cyber-warrior-01/GroqTales
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
30 lines (30 loc) · 866 Bytes
/
vercel.json
File metadata and controls
30 lines (30 loc) · 866 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
{
"buildCommand": "npm run vercel-build",
"devCommand": "npm run dev",
"installCommand": "npm ci",
"framework": "nextjs",
"regions": ["iad1"],
"functions": {
"app/api/**/*.ts": {
"maxDuration": 30
}
},
"env": {
"NODE_ENV": "production",
"SKIP_ENV_VALIDATION": "true"
},
"build": {
"env": {
"NEXT_PUBLIC_BUILD_MODE": "true",
"NEXT_PUBLIC_URL": "https://groqtales.vercel.app",
"NEXT_PUBLIC_VERSION": "1.0.0",
"NEXT_PUBLIC_IMAGE_URL": "https://groqtales.vercel.app/images",
"NEXT_PUBLIC_SPLASH_IMAGE_URL": "https://groqtales.vercel.app/splash.jpg",
"NEXT_PUBLIC_SPLASH_BACKGROUND_COLOR": "#1a1a2e",
"NEXT_PUBLIC_GROQ_API_KEY": "mock-groq-key-for-build",
"MONGODB_URI": "mongodb://mock:mock@mock:27017/mock",
"MONGODB_DB_NAME": "mock-db",
"CI": "true"
}
}
}