aw-lights/liveview-rust/js/webpack.config.js
2021-08-18 10:02:40 -04:00

10 lines
222 B
JavaScript

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