panel layout

This commit is contained in:
realaravinth
2021-04-06 21:34:11 +05:30
parent 312d02a41d
commit 36e64e399e
18 changed files with 694 additions and 265 deletions

View File

@@ -10,17 +10,17 @@ module.exports = merge(common, {
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new HtmlWebpackPlugin({
template: './output/index.html',
}),
new HtmlWebpackPlugin({
filename: 'register/index.html',
template: './output/register/index.html',
template: path.resolve(__dirname, 'output/register/', 'index.html'),
}),
new HtmlWebpackPlugin({
filename: 'panel/index.html',
template: './output/panel/index.html',
template: path.resolve(__dirname, 'output/panel/', 'index.html'),
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'output/', 'index.html'),
}),
],
module: {