-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
185 lines (182 loc) · 5.45 KB
/
webpack.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// TODO: 可以使用webpack4重构打包代码
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const OpenBrowserPlugin = require('open-browser-webpack-plugin');
const AutoPreFixer = require('autoprefixer');
require('colors');
const CONFIG_HMR = {
context: __dirname,
entry: [
'react-hot-loader/patch',
// activate HMR for React
'./index.js',
// the entry point of our app
],
output: {
filename: 'bundle.js',
path: __dirname,
publicPath: '/'
// necessary for HMR to know where to load the hot update chunks
},
devServer: {
hot: true,
// enable HMR on the server
contentBase: __dirname,
// match the output path
publicPath: '/',
// match the output `publicPath`
overlay: {
warnings: true,
errors: true
},
// 警告和错误屏幕显示信息
host: '0.0.0.0',
port: '8010'
// 打开对外提供服务
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
use: [
'babel-loader'
],
exclude: /(node_modules|lib)/
},
{
test: /\.css$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader', options: { modules: false } },
],
},
{
test: /\.less$/,
use: [{
loader: 'style-loader' // creates style nodes from JS strings
}, {
loader: 'css-loader', // translates CSS into CommonJS
options: { modules: true }
}, {
loader: 'less-loader', // compiles Less to CSS
options: { modules: true }
}]
},
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
name: '[name]-[hash].[ext]',
},
},
],
},
],
},
plugins: [
new OpenBrowserPlugin({
url: 'http://localhost:8010',
browser: 'chrome'
}),
new webpack.HotModuleReplacementPlugin(),
// enable HMR globally
new webpack.NamedModulesPlugin(),
// prints more readable module names in the browser console on HMR updates
],
};
const CONFIG_DIST = {
entry: {
CFRichEditor: './src/dist-entry.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].min.js',
},
externals: {
"react": 'React', // dist文件一般不打包react模块,因为dist文件是通过html script引入的,html会有react.js引入,会导致重复引入
'react-dom': 'ReactDOM'
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
use: [
'babel-loader'
],
exclude: /node_modules/
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [{
loader: 'css-loader',
options: { modules: false }
}, {
loader: 'postcss-loader',
options: {
plugins() {
return [
AutoPreFixer()
];
}
}
}],
})
},
{
test: /\.less$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [{
loader: 'css-loader', options: { modules: true }
}, {
loader: 'less-loader', options: { modules: true }
}, {
loader: 'postcss-loader',
options: {
plugins() {
return [
AutoPreFixer()
];
}
}
}],
})
},
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
name: '[name]-[hash].[ext]',
},
},
],
},
],
},
plugins: [
new ExtractTextPlugin({
filename: '[name].min.css',
}),
],
};
function config(env) {
// console.log(env);
if (env && env.hmr) {
console.log('正在启动本地HMR调试...'.red);
return CONFIG_HMR;
}
if (env && env.dist) {
console.log('正在从src打包生产代码至dist...'.green);
return CONFIG_DIST;
}
}
module.exports = config;