fix!: performance issues related to lucide-svelte and shadcn

This commit is contained in:
2024-11-29 04:01:01 +01:00
parent c89073e025
commit 1287b71580
9 changed files with 183 additions and 186 deletions

View File

@@ -1,6 +1,12 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import Icons from 'unplugin-icons/vite';
export default defineConfig({
plugins: [sveltekit()]
plugins: [
sveltekit(),
Icons({
compiler: 'svelte'
})
]
});