You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { defineConfig } from 'vite'
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
import { identity } from 'svelte/internal'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: './',
|
|
plugins: [
|
|
svelte(),
|
|
VitePWA({
|
|
registerType: 'autoUpdate',
|
|
includeAssets: ['icons/icon.svg', 'icons/icon-192.png', 'icons/icon-512.png', 'icons/apple-touch-icon.png', 'icons/masked-icon.svg'],
|
|
manifest: {
|
|
name: 'Apkes',
|
|
short_name: 'Apkes',
|
|
description: 'Simple health app.',
|
|
lang: 'en',
|
|
theme_color: '#064e3b',
|
|
background_color: '#064e3b',
|
|
display: 'standalone',
|
|
icons: [
|
|
{
|
|
src: 'icons/icon-192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png'
|
|
},
|
|
{
|
|
src: 'icons/icon-512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png'
|
|
},
|
|
{
|
|
src: 'icons/masked-icon.svg',
|
|
sizes: '120x120',
|
|
type: 'image/svg+xml'
|
|
}
|
|
]
|
|
}
|
|
})
|
|
]
|
|
})
|