Files
libhalo/web/webpack.config.js
2023-03-01 21:30:57 +01:00

11 lines
165 B
JavaScript

module.exports = {
entry: {
app: './weblib.js',
},
output: {
filename: 'libhalo.js'
},
mode: 'production',
target: 'web',
};