First commit

This commit is contained in:
2026-04-21 13:57:46 +09:00
commit d3e2f6d4b6
34 changed files with 928 additions and 0 deletions
+12
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',
},
};