-
Notifications
You must be signed in to change notification settings - Fork 23
/
netlify.toml
47 lines (40 loc) · 1 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
45
46
47
[build]
publish = "_site"
command = "eleventy"
[[headers]]
for = "/*"
[headers.values]
X-Content-Type-Options = "nosniff"
[[headers]]
for = "/"
[headers.values]
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
Cache-Control = "no-cache"
[[headers]]
for = "/*.html"
[headers.values]
Content-Type = "text/html; charset=utf-8"
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
Cache-Control = "no-cache"
[[headers]]
for = "/site.webmanifest"
[headers.values]
Content-Type = "application/manifest+json; charset=utf-8"
Cache-Control = "no-cache"
[[headers]]
for = "/*.json"
[headers.values]
Content-Type = "application/manifest+json; charset=utf-8"
Cache-Control = "no-cache"
[[headers]]
for = "/*.png"
[headers.values]
Cache-Control = "max-age=31536000, immutable"
[[plugins]]
package = "@algolia/netlify-plugin-crawler"
[plugins.inputs]
branches = ['main']
pathPrefix = "/_site"
customDomain = "webwewant.fyi"