We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23caec6 commit acd975fCopy full SHA for acd975f
packages/react-scripts/config/webpack.config.dev.js
@@ -137,7 +137,13 @@ module.exports = function(publicPath) {
137
{
138
exclude: [
139
/\.html$/,
140
- /\.(js|jsx)$/,
+ // We have to write /\.(js|jsx)(\?.*)?$/ rather than just /\.(js|jsx)$/
141
+ // because you might change the hot reloading server from the custom one
142
+ // to Webpack's built-in webpack-dev-server/client?/, which would not
143
+ // get properly excluded by /\.(js|jsx)$/ because of the query string.
144
+ // Webpack 2 fixes this, but for now we include this hack.
145
+ // https://github.com/facebookincubator/create-react-app/issues/1713
146
+ /\.(js|jsx)(\?.*)?$/,
147
/\.css$/,
148
/\.json$/,
149
/\.svg$/
0 commit comments