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", + }, +};