-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathwebpack.dev.config.js
43 lines (42 loc) · 1021 Bytes
/
webpack.dev.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const path = require('path');
const webpack = require('webpack');
const { merge } = require('webpack-merge');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const baseConfig = require('./webpack.config.js');
module.exports = merge(baseConfig, {
mode: 'development',
devServer: {
static: {
directory: path.resolve(__dirname, 'dist'),
publicPath: '/dist'
},
historyApiFallback: true,
hot: true,
proxy: [{
context: ['/mode', '/api', '/user', '/developer', '/public', '/data'],
target: 'http://localhost:3000'
}],
},
module: {
rules: [{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: "../",
},
},
"css-loader",
],
}]
},
plugins: [
new MiniCssExtractPlugin({
filename: "./styles/[name].css",
}),
new webpack.LoaderOptionsPlugin({
minimize: false,
})
]
});