-
+
arrow_back
diff --git a/client/nuxt.config.js b/client/nuxt.config.js
index 2c62a1b8..3321015c 100644
--- a/client/nuxt.config.js
+++ b/client/nuxt.config.js
@@ -100,22 +100,34 @@ module.exports = {
// nuxt/pwa https://pwa.nuxtjs.org
pwa: {
- icon: {
- source: 'Logo.png'
- },
+ icon: false,
meta: {
- appleStatusBarStyle: 'black-translucent',
+ appleStatusBarStyle: 'black',
name: 'Audiobookshelf',
- theme_color: '#373838'
+ theme_color: '#373838',
+ mobileAppIOS: true,
+ nativeUI: true
},
manifest: {
name: 'Audiobookshelf',
short_name: 'Audiobookshelf',
- background_color: '#373838'
- },
- // workbox: {
- // enabled: true // TEMP for dev
- // }
+ display: 'standalone',
+ background_color: '#373838',
+ icons: [
+ {
+ src: '/icon64.png',
+ sizes: "64x64"
+ },
+ {
+ src: '/icon192.png',
+ sizes: "120x120 144x144 192x192"
+ },
+ {
+ src: '/Logo.png',
+ sizes: "384x384 512x512"
+ }
+ ]
+ }
},
// Build Configuration: https://go.nuxtjs.dev/config-build
diff --git a/client/static/Logo.png b/client/static/Logo.png
index c9397c02..24e03a64 100644
Binary files a/client/static/Logo.png and b/client/static/Logo.png differ
diff --git a/client/static/Logo48.png b/client/static/Logo48.png
deleted file mode 100644
index 8fb2a168..00000000
Binary files a/client/static/Logo48.png and /dev/null differ
diff --git a/client/static/icon192.png b/client/static/icon192.png
new file mode 100644
index 00000000..5cbf1d4d
Binary files /dev/null and b/client/static/icon192.png differ
diff --git a/client/static/icon48.png b/client/static/icon48.png
new file mode 100644
index 00000000..8f94f77c
Binary files /dev/null and b/client/static/icon48.png differ
diff --git a/client/static/icon64.png b/client/static/icon64.png
new file mode 100644
index 00000000..e420b7ca
Binary files /dev/null and b/client/static/icon64.png differ