basic build process

This commit is contained in:
2025-09-16 21:52:33 -04:00
commit 49d36c9c5f
7 changed files with 2217 additions and 0 deletions

18
webpack.config.js Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
entry: "./src/index.js",
mode: "development",
output: {
filename: "main.js",
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
},
},
],
},
};