chore: Minor design tweaks

This commit is contained in:
Sidharth Vinod
2025-03-20 12:07:28 -07:00
parent 64e156085b
commit 41019ffa9a
6 changed files with 22 additions and 5 deletions
+5 -1
View File
@@ -1,4 +1,5 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { FileSystemIconLoader } from 'unplugin-icons/loaders';
import Icons from 'unplugin-icons/vite';
import { defineConfig } from 'vitest/config';
@@ -18,7 +19,10 @@ export default defineConfig({
plugins: [
sveltekit(),
Icons({
compiler: 'svelte'
compiler: 'svelte',
customCollections: {
custom: FileSystemIconLoader('./static/icons')
}
}),
alwaysFullReload
],