Update sw.js

master
Manas Khurana 2018-05-26 07:47:14 +05:30 committed by GitHub
parent 2e322f09e9
commit cd5d9b4e12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
sw.js
View File

@ -34,7 +34,7 @@ self.addEventListener('fetch', function (event) {
if (response) {
return response;
}
return fetch(event.request);
return fetch(event.request, {cache: "reload"});
})
);
} catch (err) {