2024-08-14 21:41:49 +00:00
|
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
|
|
|
|
export default defineConfig({
|
2025-01-12 19:53:13 +00:00
|
|
|
plugins: [sveltekit()],
|
|
|
|
build: {
|
|
|
|
target: ['es2022']
|
|
|
|
}
|
2024-08-14 21:41:49 +00:00
|
|
|
});
|