1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-20 20:21:34 +01:00
Files
CheckServer/vendors/echarts/webpack.config.js
2020-10-04 17:14:00 +02:00

15 lines
413 B
JavaScript

var PROD = process.argv.indexOf('-p') >= 0;
module.exports = {
entry: {
'echarts': __dirname + '/index.js',
'echarts.simple': __dirname + '/index.simple.js',
'echarts.common': __dirname + '/index.common.js'
},
output: {
libraryTarget: 'umd',
library: 'echarts',
path: __dirname + '/dist',
filename: PROD ? '[name].min.js' : '[name].js'
}
};