From 268b983ec1a4afd8e5c0a9a2d074b80c3df6d016 Mon Sep 17 00:00:00 2001 From: Tanker187 Date: Tue, 24 Feb 2026 16:16:58 -0500 Subject: [PATCH] Create webpack.config.js --- webpack.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 webpack.config.js diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000000..21e5af6b6b --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,9 @@ +const path = require("node:path"); + +module.exports = { + entry: "./src/index.js", + output: { + path: path.resolve(__dirname, "dist"), + filename: "bundle.js", + }, +};