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

10 lines
222 B
JavaScript
Raw Normal View History

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