-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetlify.toml
More file actions
48 lines (40 loc) · 1.1 KB
/
Copy pathnetlify.toml
File metadata and controls
48 lines (40 loc) · 1.1 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
[build]
command = "npm run build"
publish = "dist"
[build.environment]
NODE_VERSION = "18"
# Service Worker - Always check for updates
[[headers]]
for = "/sw.js"
[headers.values]
Cache-Control = "public, max-age=0, must-revalidate"
Service-Worker-Allowed = "/"
[[headers]]
for = "/workbox-*.js"
[headers.values]
Cache-Control = "public, max-age=0, must-revalidate"
# Manifest - Always check for updates
[[headers]]
for = "/manifest.webmanifest"
[headers.values]
Cache-Control = "public, max-age=0, must-revalidate"
Content-Type = "application/manifest+json"
# Assets with hash - Long-term cache (safe because hash changes with content)
[[headers]]
for = "/assets/*.css"
[headers.values]
Cache-Control = "public, max-age=31536000, immutable"
[[headers]]
for = "/assets/*.js"
[headers.values]
Cache-Control = "public, max-age=31536000, immutable"
# HTML - No cache (always get fresh)
[[headers]]
for = "/*.html"
[headers.values]
Cache-Control = "public, max-age=0, must-revalidate"
# SPA redirect
[[redirects]]
from = "/*"
to = "/index.html"
status = 200