mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-03-24 02:08:59 +03:00
43 lines
1,014 B
JavaScript
43 lines
1,014 B
JavaScript
|
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',
|
||
|
output: {
|
||
|
filename: '[name].bundle.js',
|
||
|
path: path.resolve(__dirname, 'static'),
|
||
|
},
|
||
|
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
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
});
|
||
|
|
||
|
/*
|
||
|
* 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'),
|
||
|
}),
|
||
|
],
|
||
|
|
||
|
*/
|