-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
61 lines (61 loc) · 1.21 KB
/
Copy pathvercel.json
File metadata and controls
61 lines (61 loc) · 1.21 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
54
55
56
57
58
59
60
61
{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Content-Security-Policy",
"value": "frame-ancestors 'self';"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains; preload"
}
]
}
],
"rewrites": [
{
"source": "/__/auth/:path*",
"destination": "https://softmonk-221e1.firebaseapp.com/__/auth/:path*"
},
{
"source": "/api/:path*",
"destination": "/api/:path*"
},
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"redirects": [
{
"source": "/(.*)",
"has": [
{
"type": "host",
"value": "www.softmonk.co"
}
],
"destination": "https://softmonk.co/$1",
"permanent": true
},
{
"source": "/:path+/",
"destination": "/:path+",
"permanent": true
}
]
}