sql-snippets / vite.config.ts
cfahlgren1's picture
cfahlgren1 HF staff
init
db39944
raw
history blame contribute delete
217 Bytes
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import Icons from 'unplugin-icons/vite'
export default defineConfig({
plugins: [sveltekit(), Icons({ compiler: 'svelte' })]
});