Files
Auction/webpack.common.js
2025-12-01 11:35:14 +01:00

13 lines
199 B
JavaScript

const path = require('path');
module.exports = {
entry: {
app: './js/app.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
clean: true,
filename: './js/app.js',
},
};