We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e6eecae + 268b983 commit 70c6c34Copy full SHA for 70c6c34
1 file changed
webpack.config.js
@@ -0,0 +1,9 @@
1
+const path = require("node:path");
2
+
3
+module.exports = {
4
+ entry: "./src/index.js",
5
+ output: {
6
+ path: path.resolve(__dirname, "dist"),
7
+ filename: "bundle.js",
8
+ },
9
+};
0 commit comments