forked from carbon-app/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
66 lines (66 loc) · 1.44 KB
/
now.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"alias": "carbon.now.sh",
"version": 2,
"public": true,
"builds": [{ "src": "package.json", "use": "@now/next" }],
"routes": [
{
"src": "^/privacy/?",
"status": 307,
"headers": {
"Location": "https://www.notion.so/PRIVACY-POLICY-e9847a7777714eb08ba15a7a8eaee937"
}
},
{
"src": "^/terms/?",
"status": 307,
"headers": {
"Location": "https://www.notion.so/TERMS-OF-USE-ff2ce22a7e9848c89c6be46b44297583"
}
},
{
"src": "^/offsets?/?",
"status": 307,
"headers": {
"Location": "https://projectwren.com/?utm_source=carbon"
}
},
{
"src": "^/service-worker.js$",
"dest": "/_next/static/service-worker.js",
"headers": {
"Service-Worker-Allowed": "/"
}
},
{
"src": "/",
"continue": true,
"headers": {
"X-Frame-Options": "SAMEORIGIN"
}
},
{
"src": "^/(.*)/?",
"continue": true,
"headers": {
"X-XSS-Protection": "1; mode=block",
"X-Content-Type-Options": "nosniff",
"Referrer-Policy": "no-referrer-when-downgrade",
"Feature-Policy": "geolocation 'self'; microphone 'self'; camera 'self'"
}
},
{
"src": "/embed/",
"dest": "/embed"
},
{
"src": "/about/",
"dest": "/about"
},
{ "handle": "filesystem" }
],
"github": {
"autoAlias": false,
"silent": true
}
}