Skip to content
This repository has been archived by the owner on Apr 25, 2018. It is now read-only.

Disables HTTP caching for our /sw.js file. #89

Merged
merged 2 commits into from
Aug 2, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"hosting": {
"public": "build-prod",
"headers": [{
"source" : "/sw.js",
"headers" : [{
"key" : "Cache-Control",
"value" : "no-cache"
}]
}],
"redirects": [{
"source" : "/get-started/webpack",
"destination" : "/get-started/webpack.html",
Expand Down