tcl-guessr/vite.config.ts
uku b472e99fcc
chore: make code prettier
see what i did there :3
2024-10-22 11:34:40 +02:00

12 lines
269 B
TypeScript

import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [sveltekit()],
server: {
watch: {
// direnv somehow makes vite exponentially slower with bun
ignored: ["**/.direnv/**"],
},
},
});