diff --git a/vite.config.js b/vite.config.js index 76211b8..1b8d0f0 100644 --- a/vite.config.js +++ b/vite.config.js @@ -7,14 +7,22 @@ export default defineConfig({ VitePWA({ registerType: 'autoUpdate', manifest: { + id: 'https://sune.planetrenox.com/', name: 'Sune', short_name: 'Sune', + description: 'OpenRouter GUI Frontend', start_url: 'https://sune.planetrenox.com/', display: 'standalone', + orientation: 'portrait', theme_color: '#000000', background_color: '#000000', + categories: ['productivity', 'utilities'], icons: [ - { src: 'https://sune.planetrenox.com/✺.png', sizes: '1024x1024', type: 'image/png' } + { src: 'https://sune.planetrenox.com/appstore_content/✺.png', sizes: '1024x1024', type: 'image/png' } + ], + screenshots: [ + { src: 'https://sune.planetrenox.com/appstore_content/screenshot1.jpg', sizes: '1344x2693', type: 'image/jpeg' }, + { src: 'https://sune.planetrenox.com/appstore_content/screenshot2.jpg', sizes: '1344x2699', type: 'image/jpeg' } ] } })