DUET / vite.config.ts
unbrandedhuman's picture
Duplicate from huggingchat/chat-ui
e502918
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",
}),
],
});