first commit

This commit is contained in:
2025-12-01 11:35:14 +01:00
commit a039beab8e
31 changed files with 6822 additions and 0 deletions

12
webpack.common.js Normal file
View File

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