mirror of
https://github.com/multipleof4/sune.git
synced 2026-01-13 16:17:55 +00:00
22 lines
485 B
JavaScript
22 lines
485 B
JavaScript
import { defineConfig } from 'vite'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
|
|
export default defineConfig({
|
|
build: { outDir: 'docs' },
|
|
plugins: [
|
|
VitePWA({
|
|
registerType: 'autoUpdate',
|
|
manifest: {
|
|
name: 'Sune',
|
|
short_name: 'Sune',
|
|
start_url: '.',
|
|
display: 'standalone',
|
|
icons: [
|
|
{ src: 'https://sune.planetrenox.com/✺.png', sizes: '1024x1024', type: 'image/png' }
|
|
]
|
|
}
|
|
})
|
|
]
|
|
})
|
|
|