forked from sendaifun/solana-new
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
25 lines (25 loc) · 753 Bytes
/
Copy pathvercel.json
File metadata and controls
25 lines (25 loc) · 753 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
{
"buildCommand": "bash scripts/package-skills.sh",
"outputDirectory": "public",
"rewrites": [
{ "source": "/setup.sh", "destination": "/setup.sh" },
{ "source": "/skills.tar.gz", "destination": "/skills.tar.gz" },
{ "source": "/(.*)", "destination": "https://solana-new-landing.vercel.app/$1" }
],
"headers": [
{
"source": "/setup.sh",
"headers": [
{ "key": "Content-Type", "value": "text/plain; charset=utf-8" },
{ "key": "Cache-Control", "value": "public, max-age=300" }
]
},
{
"source": "/skills.tar.gz",
"headers": [
{ "key": "Content-Type", "value": "application/gzip" },
{ "key": "Cache-Control", "value": "public, max-age=300" }
]
}
]
}