Start frontend project

This commit is contained in:
2021-04-07 21:23:21 -05:00
parent b46ec965e1
commit e04e991cfa
4 changed files with 1084 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const path = require("path");
module.exports = {
entry: "./src/index.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "dist"),
},
};