aboutsummaryrefslogtreecommitdiffstats
path: root/clients/www/vite.config.ts
blob: bd89f2f8377f6c237bb3432365aa08701c67715c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { purgeCss } from 'vite-plugin-tailwind-purgecss';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { SvelteKitPWA } from '@vite-pwa/sveltekit';

export default defineConfig({
	build: {
		sourcemap: true
	},
	css: {
		devSourcemap: false
	},
	plugins: [
		sveltekit(),
		SvelteKitPWA({
			devOptions: {
				enabled: true,
				type: 'module'
			},
			manifest: {
				name: 'Oracle Client',
				short_name: 'Oracle Client',
				theme_color: '#3EBCC5',
				description: "A web-based client for the Oracle of Ages/Seasons password system",
				display_override: ["window-controls-overlay", "standalone", "minimal-ui"],
				display: "fullscreen",
				icons: [
					{
						src: "img/pwa-192x192.png",
						sizes: "192x192",
						type: "image/png",
					}
				],
				id: "zorascript",
			},
			registerType: 'autoUpdate',
			workbox: {
				globPatterns: ['client/**/*.{js,css,html,svg,png}']
			}
		}),
		purgeCss()
	]
});