-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.config.js
88 lines (72 loc) · 1.93 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const path = require("path");
const webpack = require("webpack");
const merge = require('webpack-merge');
const commonConfig = require('./webpack.common.config.js');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const devConfig= {
/*入口*/
entry: {
app: ["react-hot-loader/patch", path.join(__dirname, "src/index.js")],
},
output: {
/*这里本来应该是[chunkhash]的,但是由于[chunkhash]和react-hot-loader不兼容。只能妥协*/
filename: "[name].[hash].js",
},
devtool: "inline-source-map",
module: {
rules: [
{
test: /\.css$/,
use: [
"style-loader",
"css-loader"
]
},
{
test: /\.(scss|sass)$/,
use: [
"style-loader", // creates style nodes from JS strings
"css-loader", // translates CSS into CommonJS
"sass-loader" // compiles Sass to CSS, using Node Sass by default
]
},
{
test: /\.less$/,
use: [
'style-loader', // creates style nodes from JS strings
'css-loader', // translates CSS into CommonJS
'less-loader' // compiles Less to CSS
]
}
]
},
resolve: {
alias: {
"~": path.join(__dirname, "src/")
}
},
devServer: {
hot: true,
port: 8080,
host: "0.0.0.0", //允许在同ip局域网下,移动端打开页,
contentBase: path.join(__dirname, "./dist"),
historyApiFallback: true //404页面重定向到index.html
// proxy: {
// "/api": "http://localhost:3000"
// },
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new BundleAnalyzerPlugin()
],
mode: "development"
};
module.exports = merge({
customizeArray(a, b, key) {
/*entry.app不合并,全替换*/
if (key === 'entry.app') {
return b;
}
return undefined;
}
})(commonConfig, devConfig);