aboutsummaryrefslogtreecommitdiff
path: root/vite.config.ts
blob: 2007f5a83a525162e46ea9e22e0df1bdbc8a40b5 (plain)
1
2
3
4
5
6
7
8
9
10
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import svg from '@poppanator/sveltekit-svg'

export default defineConfig({
	plugins: [
    sveltekit(),
    svg()
  ]
});