Skip to content

Commit 70c6c34

Browse files
authored
Merge pull request #14 from Tanker187/Tanker187-patch-13
Create webpack.config.js
2 parents e6eecae + 268b983 commit 70c6c34

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

webpack.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)