minetest-web/public/rollup.config.js

11 lines
138 B
JavaScript
Raw Normal View History

2023-09-20 15:20:46 +02:00
module.exports = [{
input: 'js/main.js',
output: {
file :'js/bundle.js',
format: 'iife',
sourcemap: true,
compact: true
}
}];