-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
39 lines (39 loc) · 1003 Bytes
/
Copy pathvercel.json
File metadata and controls
39 lines (39 loc) · 1003 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
34
35
36
37
38
39
{
"buildCommand": "cd frontend && pnpm build",
"devCommand": "cd frontend && pnpm dev",
"installCommand": "pnpm install",
"framework": "nextjs",
"outputDirectory": "frontend/.next",
"env": {
"NEXT_PUBLIC_DYNAMIC_ENVIRONMENT_ID": "@dynamic_environment_id",
"NEXT_PUBLIC_CHAIN_ID": "763373",
"NEXT_PUBLIC_CHAIN_NAME": "Ink Sepolia",
"NEXT_PUBLIC_INK_SEPOLIA_RPC_URL": "https://rpc-gel-sepolia.inkonchain.com",
"NEXT_PUBLIC_EXPLORER_URL": "https://explorer-sepolia.inkonchain.com",
"NEXT_PUBLIC_MINT_TOKEN_ADDRESS": "@mint_token_address"
},
"build": {
"env": {
"NEXT_TELEMETRY_DISABLED": "1"
}
},
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
}
]
}