1
0
Fork 0
mirror of https://github.com/mCaptcha/mCaptcha.git synced 2025-03-23 01:48:00 +03:00
mCaptcha/webpack.dev.js

49 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-04-09 14:21:43 +05:30
const path = require('path');
const common = require('./webpack.common');
const merge = require('webpack-merge');
var HtmlWebpackPlugin = require('html-webpack-plugin');
2021-05-01 14:41:22 +05:30
const CleanWebpackPlugin = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
2021-04-09 14:21:43 +05:30
module.exports = merge(common, {
mode: 'development',
output: {
2021-04-09 15:03:50 +05:30
filename: '[name].js',
path: path.resolve(__dirname, 'static-assets/bundle'),
2021-04-09 14:21:43 +05:30
},
2021-05-01 14:41:22 +05:30
plugins: [
new MiniCssExtractPlugin({filename: '[name].css'}),
new CleanWebpackPlugin(),
],
2021-04-09 14:21:43 +05:30
module: {
rules: [
{
test: /\.scss$/,
use: [
2021-05-01 14:41:22 +05:30
MiniCssExtractPlugin.loader, //3. Extract css into files
2021-04-09 14:21:43 +05:30
'css-loader', //2. Turns css into commonjs
'sass-loader', //1. Turns sass into css
],
},
],
},
});
/*
* plugins: [
new HtmlWebpackPlugin({
filename: 'register/index.html',
template: path.resolve(__dirname, 'output/register/', 'index.html'),
}),
new HtmlWebpackPlugin({
filename: 'panel/index.html',
template: path.resolve(__dirname, 'output/panel/', 'index.html'),
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'output/', 'index.html'),
}),
],
*/