aw-lights/liveview-rust/js/webpack.config.js

12 lines
251 B
JavaScript
Raw Normal View History

2021-08-18 10:02:40 -04:00
const path = require('path');
module.exports = {
mode: 'production',
2021-08-21 14:02:08 -04:00
entry: './liveview-dev.js',
2021-08-18 10:02:40 -04:00
output: {
2021-08-21 14:02:08 -04:00
filename: './liveview.js',
// path: path.resolve(__dirname, 'static/js')
},
devtool: 'eval-source-map',
};