mCaptcha/frontend/webpack.dev.js

39 lines
917 B
JavaScript
Raw Normal View History

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