feat: added webpack, stimulus and turbo

This commit is contained in:
Stephan Plöhn 2025-08-26 11:59:30 +02:00
parent f3b60adb21
commit 93939ff054
8 changed files with 62 additions and 10 deletions

10
webpack.config.js Normal file
View file

@ -0,0 +1,10 @@
const path = require('path');
module.exports = {
entry: './src/js/index.js',
mode: "production",
output: {
filename: 'app.js',
path: path.resolve(__dirname, 'public/js'),
},
};