blob: 95eb0befe61c9032d8cee968b36f536e89275ccd (
plain)
1
2
3
4
5
6
7
|
import devtoolsJson from 'vite-plugin-devtools-json';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit(), devtoolsJson()]
});
|