-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetlify.toml
40 lines (32 loc) · 974 Bytes
/
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
# Settings in the [build] context are global and are applied to
# all contexts unless otherwise overridden by more specific contexts.
[build]
publish = "public/"
# Default build command.
command = "npm run build"
[[plugins]]
# Installs the Lighthouse Build Plugin for all deploy contexts
package = "@netlify/plugin-lighthouse"
[[plugins]]
package = "@netlify/plugin-gatsby"
# The following redirect is intended for use with most SPAs
# that handle routing internally.
#[[redirects]]
# from = "/*"
# to = "/index.html"
# status = 200
#[[headers]]
# # Define which paths this specific [[headers]] block will cover.
# for = "/*"
#
# [headers.values]
# X-Frame-Options = "DENY"
# X-XSS-Protection = "1; mode=block"
# Content-Security-Policy = "frame-ancestors https://www.facebook.com"
#
# # Multi-value headers are expressed with multi-line strings.
# cache-control = '''
# max-age=0,
# no-cache,
# no-store,
# must-revalidate'''