AutoImage replaced LazyImage && general improvements to components with style props

This commit is contained in:
Eclypsed
2024-07-22 02:53:52 -04:00
parent f10a184284
commit 455a01982a
32 changed files with 883 additions and 161 deletions

View File

@@ -1,6 +1,13 @@
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',
autoInstall: true,
}),
],
})