This commit is contained in:
mike
2025-12-15 22:42:52 +01:00
parent 0c2e39749f
commit e135fe4822
8 changed files with 122 additions and 28 deletions

View File

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