-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
56 lines (56 loc) · 1.67 KB
/
Copy pathvercel.json
File metadata and controls
56 lines (56 loc) · 1.67 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"version": 2,
"builds": [
{
"src": "server.js",
"use": "@vercel/node"
},
{
"src": "package.json",
"use": "@vercel/static-build",
"config": {
"distDir": "dist",
"buildCommand": "npm run build && node vercel-setup.js"
}
}
],
"routes": [
{
"src": "/assets/(.*)",
"headers": {
"cache-control": "public, max-age=31536000, immutable"
},
"dest": "/assets/$1"
},
{
"src": "/(.*)\\.(js|css|json|jpg|jpeg|png|gif|ico|svg|woff|woff2|ttf|eot)$",
"headers": {
"cache-control": "public, max-age=31536000, immutable"
},
"dest": "/$1"
},
{
"src": "/api/(.*)",
"dest": "server.js"
},
{
"src": "/(.*)",
"dest": "/index.html"
}
],
"env": {
"NODE_ENV": "production",
"JWT_EXPIRE": "30d",
"SUPABASE_URL": "https://qqmagqwumjipdqvxbiqu.supabase.co",
"SUPABASE_ANON_KEY": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InFxbWFncXd1bWppcGRxdnhiaXF1Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDUwMDEwMTIsImV4cCI6MjA2MDU3NzAxMn0.Ho8DYLWpX_vQ6syrI2zkU3G5pnNTdnYpgtpyjjGYlDA",
"JWT_SECRET": "e4f8a2b5c9d3f7e1a0b5c8d2e6f3a9b7d1e0f5a2c4b8e3d7f9a1c5b0e2d4f8",
"CORS_ORIGIN": "*",
"RESEND_API_KEY": "re_4tfvwTmv_9kPKorQAcpZmZcZ4i744cC1Q"
},
"build": {
"env": {
"VITE_APP_NAME": "JetSet App",
"VITE_API_URL": "/api"
}
}
}