48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
|
import { defineConfig } from 'vite'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
import { VitePWA } from 'vite-plugin-pwa'
|
||
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
VitePWA({
|
||
|
registerType: 'autoUpdate',
|
||
|
workbox: {
|
||
|
globPatterns: ['**/*.{js,css,html,ico,png,svg,wav,mp3}']
|
||
|
},
|
||
|
includeAssets: ['favicon.ico', 'apple-touch-icon.png', 'sounds/*.wav'],
|
||
|
manifest: {
|
||
|
name: 'Notebrook',
|
||
|
short_name: 'Notebrook',
|
||
|
description: 'Light note taking app in messenger style',
|
||
|
theme_color: '#ffffff',
|
||
|
background_color: '#ffffff',
|
||
|
display: 'standalone',
|
||
|
icons: [
|
||
|
{
|
||
|
src: 'pwa-192x192.png',
|
||
|
sizes: '192x192',
|
||
|
type: 'image/png'
|
||
|
},
|
||
|
{
|
||
|
src: 'pwa-512x512.png',
|
||
|
sizes: '512x512',
|
||
|
type: 'image/png'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
})
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
}
|
||
|
},
|
||
|
server: {
|
||
|
port: 5173
|
||
|
},
|
||
|
build: {
|
||
|
outDir: 'dist'
|
||
|
}
|
||
|
})
|