mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-03-04 01:29:52 +01:00
Start again
This commit is contained in:
17
vendors/echarts/extension/webpack.config.js
vendored
Normal file
17
vendors/echarts/extension/webpack.config.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
var PROD = process.argv.indexOf('-p') >= 0;
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
'bmap': __dirname + '/../extension/bmap/bmap.js',
|
||||
'dataTool': __dirname + '/../extension/dataTool'
|
||||
},
|
||||
output: {
|
||||
libraryTarget: 'umd',
|
||||
library: ['echarts', '[name]'],
|
||||
path: __dirname + '/../dist/extension',
|
||||
filename: PROD ? '[name].min.js' : '[name].js'
|
||||
},
|
||||
externals: {
|
||||
'echarts': 'echarts'
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user