File size: 373 Bytes
60216ec 189caf9 aac02fe dac6daa 189caf9 aac02fe 189caf9 dac6daa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import UnpluginTypia from "@ryoppippi/unplugin-typia/vite";
import Icons from "unplugin-icons/vite";
export default defineConfig({
plugins: [
UnpluginTypia({
log: "verbose",
cache: false,
}),
sveltekit(),
Icons({
compiler: "svelte",
autoInstall: true,
}),
],
});
|