chat-ui-energy / vite.config.ts
victor's picture
victor HF Staff
Prettier update (#54)
98051f8 unverified
raw
history blame
231 Bytes
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import Icons from "unplugin-icons/vite";
export default defineConfig({
plugins: [
sveltekit(),
Icons({
compiler: "svelte",
}),
],
});