Merge pull request #498 from omnivore-app/fix/font-cache-control

Set a cache control header on font files
This commit is contained in:
Jackson Harper 2022-04-27 11:10:43 -07:00 committed by GitHub
commit 3128e65463
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,14 @@
{
"regions": ["sfo"]
"regions": ["sfo"],
"headers": [
{
"source": "/static/fonts/(.*)",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public,max-age=31536000"
}
]
}
]
}