chat-ui-3.0 / vite.config.ts
Toaster496's picture
Duplicate from huggingchat/chat-ui
3ea9478
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import Icons from "unplugin-icons/vite";
export default defineConfig({
plugins: [
sveltekit(),
Icons({
compiler: "svelte",
}),
],
});