File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ var path = require('path');
11
11
var autoprefixer = require ( 'autoprefixer' ) ;
12
12
var webpack = require ( 'webpack' ) ;
13
13
var HtmlWebpackPlugin = require ( 'html-webpack-plugin' ) ;
14
+ var CaseSensitivePathsPlugin = require ( 'case-sensitive-paths-webpack-plugin' ) ;
14
15
var paths = require ( './paths' ) ;
15
16
16
17
module . exports = {
@@ -105,6 +106,7 @@ module.exports = {
105
106
} ) ,
106
107
new webpack . DefinePlugin ( { 'process.env.NODE_ENV' : '"development"' } ) ,
107
108
// Note: only CSS is currently hot reloaded
108
- new webpack . HotModuleReplacementPlugin ( )
109
+ new webpack . HotModuleReplacementPlugin ( ) ,
110
+ new CaseSensitivePathsPlugin ( )
109
111
]
110
112
} ;
Original file line number Diff line number Diff line change 40
40
"babel-preset-es2016" : " 6.11.3" ,
41
41
"babel-preset-react" : " 6.11.1" ,
42
42
"babel-runtime" : " 6.11.6" ,
43
+ "case-sensitive-paths-webpack-plugin" : " 1.1.2" ,
43
44
"chalk" : " 1.1.3" ,
44
45
"cross-spawn" : " 4.0.0" ,
45
46
"css-loader" : " 0.23.1" ,
You can’t perform that action at this time.
0 commit comments