aw-lights/liveview-rust/js/webpack.config.js
2021-08-21 14:02:08 -04:00

12 lines
251 B
JavaScript

const path = require('path');
module.exports = {
mode: 'production',
entry: './liveview-dev.js',
output: {
filename: './liveview.js',
// path: path.resolve(__dirname, 'static/js')
},
devtool: 'eval-source-map',
};