mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-24 10:54:04 +08:00
483ecaae62
* fiux * add changeset --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import { sveltekit } from "@sveltejs/kit/vite";
|
|
import { defineConfig } from "vite";
|
|
import { inject_component_loader } from "../app/build_plugins";
|
|
|
|
export default defineConfig(({ mode }) => ({
|
|
plugins: [sveltekit(), inject_component_loader({ mode })]
|
|
}));
|