2024-10-21 12:54:15 +02:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [svelte()],
|
2025-02-08 11:18:51 +01:00
|
|
|
base: './',
|
2024-10-21 12:54:15 +02:00
|
|
|
})
|