diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2023-01-15 22:45:19 +0100 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2023-01-15 22:45:19 +0100 |
commit | 40a0423208c0863fb5be95f4e6bdc48a25482996 (patch) | |
tree | 139c4a799bb7b7f183a8b9c85ff1caae056b9d58 /src/service-worker.js | |
parent | 1e6f4e166ef3ac73f8bfaf1b98504d7fd660a9ce (diff) | |
download | microbit-gamepad-40a0423208c0863fb5be95f4e6bdc48a25482996.tar.gz microbit-gamepad-40a0423208c0863fb5be95f4e6bdc48a25482996.zip |
Fix service worker error, update deploy script
Diffstat (limited to 'src/service-worker.js')
-rw-r--r-- | src/service-worker.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service-worker.js b/src/service-worker.js index 96accb3..112a0e7 100644 --- a/src/service-worker.js +++ b/src/service-worker.js @@ -1,4 +1,4 @@ -var APP_PREFIX = 'hoverbitcontroller' // Identifier for this app (this needs to be consistent across every cache update) +var APP_PREFIX = 'microbitgamepad' // Identifier for this app (this needs to be consistent across every cache update) var VERSION = '{{ VERSION }}' // Version of the off-line cache (change this value everytime you want to update cache) var CACHE_NAME = APP_PREFIX + VERSION var URLS = ["{{ CACHE_FILES }}"] // This will be replaced by the deploy-script |