forked from smaranjitghose/doc2pen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netlify.toml
32 lines (32 loc) · 942 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
[[headers]]
for = "*.js" # for caching js files
[headers.values]
Cache-Control = "public, max-age=34397077" # 1year 1month cache
[[headers]]
for = "*.jsx" # for caching jsx files
[headers.values]
Cache-Control = "public, max-age=34397077" # 1year 1month cache
[[headers]]
for = "*.css" # css files too
[headers.values]
Cache-Control = "public, max-age=34397077"
[[headers]]
for = "*.png" # png files too
[headers.values]
Cache-Control = "public, max-age=34397077"
[[headers]]
for = "*.jpg" # jpg files too
[headers.values]
Cache-Control = "public, max-age=34397077"
[[headers]]
for = "*.jpeg" # jpeg files too
[headers.values]
Cache-Control = "public, max-age=34397077"
[[headers]]
for = "*.webp" # webp files too
[headers.values]
Cache-Control = "public, max-age=34397077"
[[headers]]
for = "*.svg" # svg files too
[headers.values]
Cache-Control = "public, max-age=34397077"