Skip to content

Commit cc37409

Browse files
committed
update webpack prod config
1 parent a135730 commit cc37409

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"react-dom": "15.0.2",
3838
"react-hot-loader": "1.3.0",
3939
"react-router": "2.0.1",
40+
"strip-loader": "0.1.2",
4041
"style-loader": "0.13.1",
4142
"stylelint": "6.6.0",
4243
"stylelint-config-standard": "9.0.0",

src/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
footer: 'xxx版权所有 © 2015-2099', // footer中显示的字
1212

1313
debug: true, // 是否开启debug模式, 不会请求后端接口, 使用mock的数据
14-
logLevel: 'debug', // 日志级别, 目前支持debug/info/warn/error 4种级别
14+
logLevel: 'info', // 日志级别, 目前支持debug/info/warn/error 4种级别
1515

1616
api: { // 对后端请求的相关配置
1717
host: 'http://remoteHost:8080', // 调用ajax接口的地址, 默认值空, 如果是跨域的, 服务端要支持CORS

webpack.config.prod.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
const webpack = require('webpack');
22

3+
const babelLoaderConfig = {
4+
presets: ['es2015', 'stage-0', 'react'],
5+
plugins: [['antd', {'style': true}]],
6+
};
7+
38
module.exports = {
49
entry: [
510
// 可能需要polyfill
@@ -9,7 +14,7 @@ module.exports = {
914
output: {
1015
path: __dirname + '/dist',
1116
filename: 'bundle.min.js',
12-
publicPath: 'http://mycdn.com/', // require时用来生成图片的地址
17+
// publicPath: 'http://mycdn.com/', // require时用来生成图片的地址
1318
},
1419

1520
resolve: {
@@ -21,11 +26,8 @@ module.exports = {
2126
loaders: [
2227
{
2328
test: /\.jsx?$/,
24-
loader: 'babel-loader',
25-
query: {
26-
presets: ['es2015', 'stage-0', 'react'],
27-
plugins: [['antd', {'style': true}]],
28-
},
29+
// 删除一些debug语句
30+
loaders: ['babel-loader?' + JSON.stringify(babelLoaderConfig), 'strip-loader?strip[]=logger.debug,strip[]=console.log,strip[]=console.debug'],
2931
exclude: /node_modules/,
3032
}, {
3133
test: /\.css$/,

0 commit comments

Comments
 (0)