diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-03-22 18:19:12 -0700 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-03-22 18:19:12 -0700 |
commit | 4b87511f28b2d7b8b85bb07ffe6c9909c141acd6 (patch) | |
tree | a24702e1798f63acf619f6ae39cfb489045daf0f | |
parent | 22555b55e262a1c3519d422d9c446d2d6cf0c83a (diff) | |
download | homer-4b87511f28b2d7b8b85bb07ffe6c9909c141acd6.tar.gz homer-4b87511f28b2d7b8b85bb07ffe6c9909c141acd6.tar.zst homer-4b87511f28b2d7b8b85bb07ffe6c9909c141acd6.zip |
Remove config.yml from service worker to avoid caching issuesv1.0
-rw-r--r-- | config.yml | 6 | ||||
-rw-r--r-- | worker.js | 1 |
2 files changed, 3 insertions, 4 deletions
@@ -2,7 +2,7 @@ | |||
2 | # Homepage configuration | 2 | # Homepage configuration |
3 | # See https://fontawesome.com/icons for icons options | 3 | # See https://fontawesome.com/icons for icons options |
4 | 4 | ||
5 | title: "Demo homepage" | 5 | title: "Demo dashboard" |
6 | subtitle: "Homer" | 6 | subtitle: "Homer" |
7 | logo: "assets/logo.png" | 7 | logo: "assets/logo.png" |
8 | # icon: "fas fa-skull-crossbones" Optional icon | 8 | # icon: "fas fa-skull-crossbones" Optional icon |
@@ -20,11 +20,11 @@ message: | |||
20 | links: | 20 | links: |
21 | - name: "ansible" | 21 | - name: "ansible" |
22 | icon: "fab fa-github" | 22 | icon: "fab fa-github" |
23 | url: "https://github.com/xxxxx/ansible/" | 23 | url: "https://github.com/bastienwirtz/homer" |
24 | target: '_blank' # optionnal html a tag target attribute | 24 | target: '_blank' # optionnal html a tag target attribute |
25 | - name: "Wiki" | 25 | - name: "Wiki" |
26 | icon: "fas fa-book" | 26 | icon: "fas fa-book" |
27 | url: "https://wiki.xxxxxx.com/" | 27 | url: "https://www.wikipedia.org/" |
28 | 28 | ||
29 | # Services | 29 | # Services |
30 | # First level array represent a group. | 30 | # First level array represent a group. |
@@ -6,7 +6,6 @@ self.addEventListener('install', event => { | |||
6 | cache.addAll([ | 6 | cache.addAll([ |
7 | '.', | 7 | '.', |
8 | 'index.html', | 8 | 'index.html', |
9 | 'config.yml', | ||
10 | 'app.css', | 9 | 'app.css', |
11 | 'app.js', | 10 | 'app.js', |
12 | 'vendors/vue.min.js', | 11 | 'vendors/vue.min.js', |