frontend templating

This commit is contained in:
realaravinth
2021-04-03 17:18:18 +05:30
parent ecc0076cdd
commit a78b1eb25d
27 changed files with 189 additions and 107 deletions

View File

@@ -11,11 +11,11 @@ module.exports = merge(common, {
},
plugins: [
new HtmlWebpackPlugin({
template: "./public/index.html"
template: "./output/index.html"
}),
new HtmlWebpackPlugin({
filename: "signup/index.html",
template: "./public/signup/index.html"
template: "./output/signup/index.html"
})
],