mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2026-02-11 18:15:39 +00:00
frontend toolchain config and registration
This commit is contained in:
34
frontend/webpack.dev.js
Normal file
34
frontend/webpack.dev.js
Normal file
@@ -0,0 +1,34 @@
|
||||
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, "dist")
|
||||
},
|
||||
plugins: [
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./public/index.html"
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
filename: "signup/index.html",
|
||||
template: "./public/signup/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
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user