beatufitull front end for ozone modration ,, wit catpucoin and ebergarden !
ozone
moderation
1import tailwindcss from '@tailwindcss/vite';
2import { sveltekit } from '@sveltejs/kit/vite';
3import { defineConfig } from 'vite';
4import { VitePWA } from 'vite-plugin-pwa'
5
6export default defineConfig({
7 plugins: [
8 tailwindcss(),
9 VitePWA({
10 registerType: 'autoUpdate',
11 injectRegister: 'auto',
12 devOptions: {
13 enabled: true
14 },
15 includeAssets: ['favicon.svg'],
16 manifest: {
17 name: 'meowzone',
18 short_name: 'meowzone',
19 description: 'altenrative forntend for ozone',
20 theme_color: '#1e1e2e',
21 icons: [
22 {
23 src: 'favicon.png',
24 sizes: '512x512',
25 type: 'image/svg+xml'
26 }
27 ]
28 }
29 }),
30 sveltekit(),
31 ]
32});