diff options
author | marudor <marudor@marudor.de> | 2019-05-11 12:51:41 +0200 |
---|---|---|
committer | marudor <marudor@marudor.de> | 2019-05-11 12:51:41 +0200 |
commit | 94febe86cd81f2d40d4e5f93f7dfb9be82dbff15 (patch) | |
tree | defde85fb415f7dab052b84075e0f3cb8e2b07f8 /public/service-worker.js | |
parent | d2f01f963a1c18020969e5d8a4584e3e16c5641d (diff) |
Release version 19, fix asset-release for macos
Diffstat (limited to 'public/service-worker.js')
-rw-r--r-- | public/service-worker.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/public/service-worker.js b/public/service-worker.js index e5cbf68..4f92662 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -1,18 +1,18 @@ -const CACHE_NAME = 'static-cache-v18'; +const CACHE_NAME = 'static-cache-v19'; const FILES_TO_CACHE = [ '/favicon.ico', '/offline.html', - '/static/v18/css/materialize.min.css', - '/static/v18/css/material-icons.css', - '/static/v18/css/local.css', - '/static/v18/fonts/MaterialIcons-Regular.woff2', - '/static/v18/fonts/MaterialIcons-Regular.woff', - '/static/v18/fonts/MaterialIcons-Regular.ttf', - '/static/v18/js/jquery-3.4.1.min.js', - '/static/v18/js/materialize.min.js', - '/static/v18/js/travelynx-actions.min.js', - '/static/v18/js/autocomplete.min.js', - '/static/v18/js/geolocation.min.js', + '/static/v19/css/materialize.min.css', + '/static/v19/css/material-icons.css', + '/static/v19/css/local.css', + '/static/v19/fonts/MaterialIcons-Regular.woff2', + '/static/v19/fonts/MaterialIcons-Regular.woff', + '/static/v19/fonts/MaterialIcons-Regular.ttf', + '/static/v19/js/jquery-3.4.1.min.js', + '/static/v19/js/materialize.min.js', + '/static/v19/js/travelynx-actions.min.js', + '/static/v19/js/autocomplete.min.js', + '/static/v19/js/geolocation.min.js', ]; self.addEventListener('install', (evt) => { |