Skip to content

Commit

Permalink
Disable service worker cache (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keboo committed Dec 27, 2022
1 parent 03fb5ae commit 955e127
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PointerStar/Client/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
<script>navigator.serviceWorker.register('service-worker.js', { updateViaCache: 'none' });</script>
</body>

</html>
4 changes: 2 additions & 2 deletions PointerStar/Client/wwwroot/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PointerStar",
"short_name": "PointerStar",
"name": "Pointer*",
"short_name": "Pointer*",
"start_url": "./",
"display": "standalone",
"background_color": "#ffffff",
Expand Down

0 comments on commit 955e127

Please sign in to comment.