-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
53 lines (53 loc) · 1.34 KB
/
Copy pathvercel.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"installCommand": "bun install --frozen-lockfile",
"buildCommand": "bun run build",
"framework": "nextjs",
"headers": [
{
"source": "/login",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, nofollow" }]
},
{
"source": "/w/:slug*",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, nofollow" }]
},
{
"source": "/admin",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, nofollow" }]
},
{
"source": "/upgrade",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, nofollow" }]
},
{
"source": "/view/:token*",
"headers": [{ "key": "X-Robots-Tag", "value": "noindex, nofollow" }]
},
{
"source": "/version.json",
"headers": [
{ "key": "Cache-Control", "value": "no-store, no-cache" },
{ "key": "Content-Type", "value": "application/json; charset=utf-8" }
]
},
{
"source": "/sw(.*).js",
"headers": [
{ "key": "Cache-Control", "value": "no-store, no-cache" },
{
"key": "Content-Type",
"value": "application/javascript; charset=utf-8"
}
]
},
{
"source": "/_next/static/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
]
}