garf/vite.config.ts

8 lines
182 B
TypeScript
Raw Permalink Normal View History

2024-03-18 22:45:45 +00:00
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
2024-03-18 18:46:25 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2024-03-18 22:45:45 +00:00
plugins: [svelte()],
});