2023-12-17 13:44:24 -05:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
2023-12-21 21:31:13 -05:00
|
|
|
import { viteSingleFile } from "vite-plugin-singlefile"
|
2023-12-17 13:44:24 -05:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2023-12-21 21:31:13 -05:00
|
|
|
plugins: [svelte(), viteSingleFile()],
|
2023-12-17 13:44:24 -05:00
|
|
|
})
|