first commit

This commit is contained in:
2026-01-16 18:36:43 +01:00
commit 7dca231004
133 changed files with 20000 additions and 0 deletions

20
bundler/webpack.dev.js Normal file
View File

@@ -0,0 +1,20 @@
const commonConfiguration = require('./webpack.common.js');
module.exports = {
...commonConfiguration,
mode: 'development',
watch: true,
watchOptions: {
ignored: /node_modules/,
aggregateTimeout: 300,
poll: 1000,
},
devServer: {
host: '0.0.0.0',
static: './dist',
liveReload: true,
open: true,
allowedHosts: 'all',
https: false
},
};