-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_headers
More file actions
29 lines (22 loc) · 655 Bytes
/
Copy path_headers
File metadata and controls
29 lines (22 loc) · 655 Bytes
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
# Image optimization headers
/.netlify/images/*
Cache-Control: public, max-age=31536000, immutable
# Asset caching
/assets/*
Cache-Control: public, max-age=31536000, immutable
# Images specifically
/assets/Logos/*
Cache-Control: public, max-age=31536000, immutable
/assets/Sprites/*
Cache-Control: public, max-age=31536000, immutable
# Audio files
/assets/Music/*
Cache-Control: public, max-age=31536000, immutable
# CSS and JS files
/css/*
Cache-Control: public, max-age=86400, must-revalidate
/js/*
Cache-Control: public, max-age=86400, must-revalidate
# HTML files
/*.html
Cache-Control: public, max-age=0, must-revalidate