-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetlify.toml
More file actions
43 lines (32 loc) · 1.06 KB
/
Copy pathnetlify.toml
File metadata and controls
43 lines (32 loc) · 1.06 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
[[headers]]
for = "/*"
[headers.values]
# Cache Control
cache-control = "public, max-age=3600"
# Strict Transport Security (HSTS)
Strict-Transport-Security = "max-age=31536000; includeSubDomains; preload"
# XSS Protection
X-Content-Type-Options = "nosniff"
X-XSS-Protection = "1; mode=block"
# Clickjacking Protection
X-Frame-Options = "DENY"
# Referrer Policy
Referrer-Policy = "strict-origin-when-cross-origin"
Feature-Policy = "geolocation 'none'; camera 'none';"
Permissions-Policy = "camera=(), microphone=(), geolocation=(), payment=(), usb=()"
[[redirects]]
from = "https://www.crypto-horizon-app.netlify.app/*"
to = "https://crypto-horizon-app.netlify.app/:splat"
status = 301
force = true
[images]
remote_images = [
"https://lcw.nyc3.cdn.digitaloceanspaces.com/.*",
"https://coin-images.coingecko.com/.*",
"https://res.cloudinary.com/.*",
"https://resources.cryptocompare.com/.*",
"https://images.cryptocompare.com/.*",
"https://www.coingecko.com/.*",
]
[build.environment]
NODE_OPTIONS = "--max-old-space-size=4096"