File size: 271 Bytes
60216ec 189caf9 dac6daa 189caf9 dac6daa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import UnpluginTypia from "@ryoppippi/unplugin-typia/vite";
export default defineConfig({
plugins: [
UnpluginTypia({
log: "verbose",
cache: false,
}),
sveltekit(),
],
});
|