Add webmanifest and improve Vite build

This commit is contained in:
2026-02-09 22:23:20 +00:00
parent 2b2095604c
commit a8c3117259
2 changed files with 13 additions and 1 deletions

View File

@@ -2,5 +2,16 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
plugins: [
sveltekit(),
],
build: {
assetsInlineLimit: 0,
cssCodeSplit: true,
sourcemap: false,
target: 'esnext',
modulePreload: {
polyfill: false,
}
},
});