mirror of https://github.com/sveltejs/svelte
7 lines
148 B
7 lines
148 B
1 year ago
|
import { defineConfig } from 'vite';
|
||
|
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [svelte()]
|
||
|
});
|