File tree 3 files changed +11
-7
lines changed
3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
- const NODE_ENV = process . env . NODE_ENV ;
1
+ import devConfig from './webpack.config.dev.babel' ;
2
+ import prodConfig from './webpack.config.prod.babel' ;
3
+
4
+ const { NODE_ENV } = process . env ;
5
+
2
6
let config ;
3
- if ( NODE_ENV === 'local' ) {
4
- config = require ( './webpack.config.dev.babel' ) ;
7
+ if ( NODE_ENV === 'development' ) {
8
+ console . log ( '读取webpack.config.dev.babel.js' ) ;
9
+ config = devConfig ;
5
10
} else {
6
- config = require ( './webpack.config.prod.babel' ) ;
11
+ console . log ( '读取webpack.config.prod.babel.js' ) ;
12
+ config = prodConfig ;
7
13
}
8
14
module . exports = config ;
Original file line number Diff line number Diff line change @@ -10,12 +10,11 @@ const commonConfig = require('./webpack.config.common.babel');
10
10
const publicPath = '/' ;
11
11
const copyEntry = Object . assign ( { } , commonConfig . entry ) ;
12
12
const entry = { } ;
13
- Object . keys ( copyEntry ) . map ( ( item ) => {
13
+ Object . keys ( copyEntry ) . forEach ( ( item ) => {
14
14
const temp = [ ...copyEntry [ item ] ] ;
15
15
temp . unshift ( 'webpack-hot-middleware/client?path=/__webpack_hmr&timeout=2000&reload=true' ) ;
16
16
entry [ item ] = temp ;
17
17
} ) ;
18
- console . log ( '读取webpack.config.dev.babel.js' ) ;
19
18
const config = {
20
19
mode : 'development' ,
21
20
devtool : 'eval-source-map' ,
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ const ExtractCssChunks = require('extract-text-webpack-plugin');
11
11
const publicPath = '/mapping/' ;
12
12
const commonConfig = require ( './webpack.config.common.babel' ) ;
13
13
14
- console . log ( '读取webpack production' ) ;
15
14
const config = {
16
15
mode : 'production' ,
17
16
devtool : 'source-map' ,
You can’t perform that action at this time.
0 commit comments