mirror of
https://github.com/HumanAIGC-Engineering/gradio-webrtc.git
synced 2026-02-05 01:49:23 +08:00
25 lines
387 B
JavaScript
25 lines
387 B
JavaScript
// export default {
|
|
// plugins: [],
|
|
// svelte: {
|
|
// preprocess: [],
|
|
// },
|
|
// build: {
|
|
// target: "modules",
|
|
// },
|
|
// };
|
|
|
|
import commonjs from "vite-plugin-commonjs";
|
|
|
|
export default {
|
|
plugins: [
|
|
commonjs({
|
|
filter(id) { return id.includes("node_modules/deepmerge"); }
|
|
})
|
|
],
|
|
svelte: {
|
|
preprocess: [],
|
|
},
|
|
build: {
|
|
target: "modules",
|
|
},
|
|
}; |