This commit is contained in:
realaravinth
2021-04-05 16:38:32 +05:30
parent a78b1eb25d
commit 2ce8a46a3f
49 changed files with 1203 additions and 1036 deletions

View File

@@ -1,34 +1,38 @@
const path = require("path");
const common = require("./webpack.common");
const merge = require("webpack-merge");
var HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require('path');
const common = require('./webpack.common');
const merge = require('webpack-merge');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = merge(common, {
mode: "development",
mode: 'development',
output: {
filename: "[name].bundle.js",
path: path.resolve(__dirname, "dist")
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new HtmlWebpackPlugin({
template: "./output/index.html"
template: './output/index.html',
}),
new HtmlWebpackPlugin({
filename: "signup/index.html",
template: "./output/signup/index.html"
})
filename: 'signup/index.html',
template: './output/signup/index.html',
}),
new HtmlWebpackPlugin({
filename: 'panel/index.html',
template: './output/panel/index.html',
}),
],
module: {
rules: [
{
test: /\.scss$/,
use: [
"style-loader", //3. Inject styles into DOM
"css-loader", //2. Turns css into commonjs
"sass-loader" //1. Turns sass into css
]
}
]
}
'style-loader', //3. Inject styles into DOM
'css-loader', //2. Turns css into commonjs
'sass-loader', //1. Turns sass into css
],
},
],
},
});