-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetlify.toml
53 lines (44 loc) · 1.11 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
48
49
50
51
52
53
[build]
publish = "_site"
command = "eleventy"
[[headers]]
for = "/*.woff"
[headers.values]
Access-Control-Allow-Origin = "*"
Content-Type = "application/font-woff"
[[headers]]
for = "/*.woff2"
[headers.values]
Access-Control-Allow-Origin = "*"
Content-Type = "application/font-woff2"
[[headers]]
for = "/*.ttf"
[headers.values]
Access-Control-Allow-Origin = "*"
Content-Type = "application/font-ttf"
[[headers]]
for = "/*"
[headers.values]
cache-control = '''
max-age=31536000,
no-cache,
no-store,
must-revalidate'''
[[headers]]
for = "/*"
[headers.values]
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
X-Content-Type-Options = "nosniff"
Content-Security-Policy = "default-src 'self'; style-src 'self'; form-action 'self'; script-src 'self'; connect-src 'self'; img-src 'self'; base-uri 'self';"
[[redirects]]
from = "/*"
to = "/404.html"
status = 404
[[plugins]]
package = "netlify-plugin-cloudinary"
[plugins.inputs]
cloudName = "colabottles"
deliveryType = "upload"
[[plugins]]
package = "@netlify/plugin-emails"