mapserver/public/js/rollup.config.js
2022-03-19 17:17:51 +01:00

11 lines
128 B
JavaScript

export default {
input: 'main.js',
output: {
file :'bundle.js',
format: 'iife',
sourcemap: true,
compact: true
}
};