diff options
author | elioat <hi@eli.li> | 2024-01-15 19:51:43 -0500 |
---|---|---|
committer | elioat <hi@eli.li> | 2024-01-15 19:51:43 -0500 |
commit | 12723d963540e99bb60197042e705260e01882ce (patch) | |
tree | 745bc7adcad8a997a5ad533b6802edacdc05459f /js | |
parent | 16224d4e55133737c2ae5a4959b307d372ac7706 (diff) | |
download | tour-12723d963540e99bb60197042e705260e01882ce.tar.gz |
*
Diffstat (limited to 'js')
-rw-r--r-- | js/inknswitch/sw.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/js/inknswitch/sw.js b/js/inknswitch/sw.js index 052c0a4..81e6bf4 100644 --- a/js/inknswitch/sw.js +++ b/js/inknswitch/sw.js @@ -4,7 +4,12 @@ self.addEventListener('install', function(event) { return cache.addAll([ './index.html', './ink.js', - './icon.png' + './icon.png', + './android-icon-36x36.png', + './android-icon-48x48.png', + './android-icon-72x72.png', + './android-icon-96x96.png', + './android-icon-144x144.png' ]); }) ); |