mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-08-14 19:23:28 +08:00
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
module.exports = {
|
|
outputDir: "demo",
|
|
transpileDependencies: ["resize-detector"],
|
|
chainWebpack: config => {
|
|
config
|
|
.entry("app")
|
|
.clear()
|
|
.add("./src/demo/main.ts");
|
|
}
|
|
};
|