generated from BobKerns/npm-typescript-rollup-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serve.json
35 lines (35 loc) · 1.06 KB
/
serve.json
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
{
"cleanUrls": false,
"trailingSlash": true,
"redirects": [
{ "source": "/", "destination": "/docs/index.html"},
{ "source": "/index.html", "destination": "/docs/index.html"},
{ "source": "/docs", "destination": "/docs/index.html"}
],
"rewrites": [
{ "source": "/docs/:p1", "destination": "/build/docs/api/:p1"},
{ "source": "/docs/:p1/:p2", "destination": "/build/docs/api/:p1/:p2"},
{ "source": "/docs/:p1/:p2/:p3", "destination": "/build/docs/api/:p1/:p2/:p3"},
{ "source": "/docs/:p1/:p2/:p3/:p4", "destination": "/build/docs/api/:p1/:p2/:p3/:p4"}
],
"headers": [
{
"source": "**/*.*",
"headers" : [
{
"key": "Cache-Control",
"value": "max-age=0, must-revalidate"
}
]
},
{
"source": "404.html",
"headers" : [
{
"key": "Cache-Control",
"value": "max-age=0, must-revalidate"
}
]
}
]
}