-
Notifications
You must be signed in to change notification settings - Fork 12
/
netlify.toml
44 lines (39 loc) · 1.07 KB
/
netlify.toml
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
[build]
command = "bin/bridgetown deploy && bin/netlify.sh"
publish = "output"
[build.environment]
NODE_ENV = "development"
BRIDGETOWN_ENV = "production"
[build.processing]
skip_processing = false
[build.processing.css]
bundle = false
minify = true
[build.processing.js]
bundle = false
minify = true
[build.processing.html]
pretty_urls = true
[build.processing.images]
compress = true
[[headers]]
for = "*"
[headers.values]
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
X-Content-Type-Options = "nosniff"
Strict-Transport-Security = "max-age=15552000; includeSubDomains"
Referrer-Policy = "no-referrer-when-downgrade"
Cache-Control = "private, max-age=0, must-revalidate"
[[headers]]
for = "/"
[headers.values]
Link = [
"<CSS_PATH>; rel=preload; as=style",
"<JS_PATH>; rel=preload; as=script",
"<https://NETLIFY_IMAGES_CDN_DOMAIN>; rel=preconnect"
]
[[headers]]
for = "/*.(png|jpg|js|css|svg|woff|ttf|eot|ico|woff2)"
[headers.values]
Cache-Control = "private, max-age=0, must-revalidate"