mapserver/public/js/rollup.config.js
2021-04-12 13:03:10 +02:00

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
}
}];