2023-01-03 21:12:41 +01:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
import topLevelAwait from "vite-plugin-top-level-await";
|
2023-01-03 17:03:08 +01:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2023-03-10 15:40:25 +01:00
|
|
|
plugins: [svelte(), topLevelAwait()],
|
2023-01-03 17:03:08 +01:00
|
|
|
})
|