BI图表插件前端模板。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
495 B

const liveServer = require("rollup-plugin-live-server");
export default {
input: "src/main.js",
output: {
file: "dist/boxline.chart.js",
format: "umd",
name: "chart"
},
plugins: [
liveServer({
port: 8001,
host: "0.0.0.0",
root: "demo",
file: "index.html",
mount: [["/dist", "./dist"], ["/index.html", "./index.html"]],
open: false,
wait: 500
})
]
};