mapserver/public/js/rollup.config.js

11 lines
128 B
JavaScript
Raw Normal View History

2019-09-19 09:03:57 +03:00
2022-03-19 19:17:51 +03:00
export default {
2019-09-19 09:03:57 +03:00
input: 'main.js',
output: {
file :'bundle.js',
2022-03-19 19:17:51 +03:00
format: 'iife',
2019-09-19 09:03:57 +03:00
sourcemap: true,
compact: true
}
2022-03-19 19:17:51 +03:00
};