-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnetlify.toml
More file actions
56 lines (45 loc) · 1.49 KB
/
Copy pathnetlify.toml
File metadata and controls
56 lines (45 loc) · 1.49 KB
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
[build]
command = "npm run production"
ignore = "git log -1 --pretty=%B | grep depfu"
publish = "dist"
[context.production]
environment = {ELEVENTY_ENV = "production"}
[context.deploy-preview]
environment = {ELEVENTY_ENV = "preview"}
[context.branch-deploy]
environment = {ELEVENTY_ENV = "branch"}
[[headers]]
for = "/*"
[headers.values]
Access-Control-Allow-Origin = 'https://cloudflareinsights.com'
Content-Security-Policy = "default-src 'self'; connect-src 'self' https://cloudflareinsights.com; font-src 'self'; img-src 'self' data: https://www.netlify.com; script-src 'self' https://static.cloudflareinsights.com; style-src 'unsafe-inline'; worker-src 'self'; frame-ancestors 'none'; base-uri 'self'; form-action 'self'; media-src 'self'; object-src 'none';"
Referrer-Policy = "no-referrer-when-downgrade"
Strict-Transport-Security = "max-age=63072000; includeSubDomains; preload"
X-Content-Type-Options = "nosniff"
X-Frame-Options = "DENY"
X-UA-Compatible = "IE=edge,chrome=1"
X-XSS-Protection = "1; mode=block"
[[plugins]]
package = "netlify-plugin-submit-sitemap"
[plugins.inputs]
baseUrl = "https://sylvain.dev"
providers = ["google", "bing"]
sitemapPath = "/sitemap.xml"
[[plugins]]
package = "netlify-plugin-no-more-404"
[plugins.inputs]
cacheKey = "production"
debugMode = false
on404 = "error"
[[plugins]]
package = "netlify-plugin-checklinks"
[plugins.inputs]
entryPoints = [
"*.html",
]
recursive = true
pretty = true
skipPatterns = []
todoPatterns = []
checkExternal = false
followSourceMaps = false