-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnow.json
56 lines (56 loc) · 2.57 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
{
"alias": ["anthony.codes"],
"builds": [
{
"src": "next.config.js",
"use": "@now/next@canary"
},
{
"src": "static/**/*",
"use": "@now/static"
}
],
"routes": [
{
"src": "^/(.*)[.](html|ico|jpg|json|pdf|png|svg|txt|webp|xml)$",
"headers": {
"Cache-Control": "public, max-age=31536000, immutable"
},
"dest": "/static/$1.$2"
},
{
"src": "/_next/static/.*",
"headers": {
"Cache-Control": "public, max-age=31536000, immutable"
}
},
{
"src": "/.*",
"headers": {
"Access-Control-Allow-Origin": "https://anthony.codes",
"Content-Security-Policy": "default-src 'none'; script-src 'self' 'unsafe-inline' https:; style-src 'self' 'unsafe-inline' https: fonts.googleapis.com; font-src 'self' https: fonts.gstatic.com; img-src 'self' https: data:; base-uri 'self'; manifest-src 'self'; object-src 'self'; connect-src https: webpack:; upgrade-insecure-requests",
"Feature-Policy": "accelerometer 'none'; autoplay 'none'; camera 'none'; fullscreen 'self'; geolocation 'none'; gyroscope 'none'; magnetometer 'none'; microphone 'none'; midi 'none'; payment 'none'; speaker 'self'; sync-xhr 'self'; usb 'none'; vr 'none'",
"Referrer-Policy": "no-referrer-when-downgrade",
"Strict-Transport-Security": "max-age=63072000; includeSubDomains; preload",
"X-Content-Security-Policy": "default-src 'none'; script-src 'self' 'unsafe-inline' https:; style-src 'self' 'unsafe-inline' https: fonts.googleapis.com; font-src 'self' https: fonts.gstatic.com; img-src 'self' https: data:; base-uri 'self'; manifest-src 'self'; object-src 'self'; connect-src https: webpack:; upgrade-insecure-requests",
"X-Content-Type-Options": "nosniff",
"X-DNS-Prefetch-Control": "on",
"X-Download-Options": "noopen",
"X-Frame-Options": "DENY",
"X-Permitted-Cross-Domain-Policies": "none",
"X-UA-Compatible": "IE=edge; chrome=1",
"X-WebKit-CSP": "default-src 'none'; script-src 'self' 'unsafe-inline' https:; style-src 'self' 'unsafe-inline' https: fonts.googleapis.com; font-src 'self' https: fonts.gstatic.com; img-src 'self' https: data:; base-uri 'self'; manifest-src 'self'; object-src 'self'; connect-src https: webpack:; upgrade-insecure-requests",
"X-XSS-Protection": "1; mode=block; report=https://anthony.codes/report-xss-violation"
}
}
],
"github": {
"autoAlias": true,
"enabled": true,
"silent": false
},
"name": "anthony-codes",
"public": true,
"regions": ["all"],
"version": 2
}