forked from MTSR/mapserver
37ee801f2b
fixes #76
19 lines
246 B
JavaScript
19 lines
246 B
JavaScript
|
|
export default [{
|
|
input: 'main.js',
|
|
output: {
|
|
file :'bundle.js',
|
|
format: 'umd',
|
|
sourcemap: true,
|
|
compact: true
|
|
}
|
|
},{
|
|
input: 'stats.js',
|
|
output: {
|
|
file :'bundle-stats.js',
|
|
format: 'umd',
|
|
sourcemap: true,
|
|
compact: true
|
|
}
|
|
}];
|