mapserver/public/rollup.config.js

11 lines
136 B
JavaScript
Raw Permalink Normal View History

2019-09-19 09:03:57 +03:00
module.exports = {
input: 'js/main.js',
2019-09-19 09:03:57 +03:00
output: {
file :'js/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
};