I'm hosting my static site on Firebase and I've included the headers key in my firebase.json file. Here's my complete config file:
{
"hosting": {
"public": ".",
"ignore": ["firebase.json"],
"headers": [{
"source": "**/*.@(jpg|jpeg|gif|png)",
"headers": [{
"key": "Cache-Control",
"value": "max-age=7200"
}]
}]
}
}
When I run a PageSpeed test with Google's PageSpeed Insights tool, I get the message:
"Leverage browser caching"
Does this mean that Firebase hosting is not applying the headers I've specified in my project config file?