blob: c8985e02797b7e3ee30154c352958bbddbe7f8fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
routes:
- route: "^.+\\.(js|css|svg|ttf)$"
# cache static assets for 20 years
headers:
Cache-Control: "max-age=630720000, no-transform, public"
gzip: true
- route: "^.+\\.(png|jpg)$"
headers:
Cache-Control: "max-age=630720000, no-transform, public"
gzip: true
- route: "^.+\\.(html|xml|json)$"
gzip: true
|