-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
vercel.json
47 lines (47 loc) · 1.05 KB
/
vercel.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
36
37
38
39
40
41
42
43
44
45
46
47
{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Content-Security-Policy",
"value": "img-src 'self'; font-src *; style-src 'self' 'unsafe-inline' fonts.googleapis.com; script-src 'self' 'unsafe-inline'; object-src 'none'"
}
]
}
],
"redirects": [
{
"source": "/docs",
"destination": "/docs/dux/introduction"
},
{
"source": "/docs/",
"destination": "/docs/dux/introduction"
},
{
"source": "/docs/dux",
"destination": "/docs/dux/introduction"
},
{
"source": "/docs/distroid",
"destination": "/docs/distroid/introduction"
},
{
"source": "/docs/peddlerspocket",
"destination": "/docs/peddlerspocket/introduction"
},
{
"source": "/docs/distools-api",
"destination": "/docs/dux/introduction"
},
{
"source": "/docs/distools-api/:name",
"destination": "/docs/dux/:name"
},
{
"source": "/blog/:name",
"destination": "/blog/posts/:name"
}
]
}