0chan-14feb/webpack.common.js

13 lines
199 B
JavaScript
Raw Normal View History

2024-02-13 19:13:35 +01:00
const path = require('path');
module.exports = {
entry: {
app: './js/app.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
clean: true,
filename: './js/app.js',
},
};