Spaces:
Runtime error
Runtime error
File size: 739 Bytes
f9f0fec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import { fileURLToPath } from "url";
import path from "path";
const __dirname = fileURLToPath(new URL(".", import.meta.url));
export default defineConfig({
build: {
lib: {
entry: "src/index.ts",
formats: ["es"]
},
rollupOptions: {
input: "src/index.ts",
output: {
dir: "dist"
}
}
},
plugins: [
svelte()
// {
// name: "resolve-gradio-client",
// enforce: "pre",
// resolveId(id) {
// if (id === "@gradio/client") {
// return path.join(__dirname, "src", "index.ts");
// }
// }
// }
],
ssr: {
target: "node",
format: "esm",
noExternal: ["ws", "semiver", "@gradio/upload"]
}
});
|