vite.config.ts 171 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';

export default defineConfig({
5
6
7
8
	plugins: [sveltekit()],
	server: {
		hmr: true
	}
Timothy J. Baek's avatar
Timothy J. Baek committed
9
});