Skip to content

Commit acd975f

Browse files
gaearonrandycoulman
authored andcommitted
Fix hot reloading for WebpackDevServer after eject (facebook#1721)
1 parent 23caec6 commit acd975f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/react-scripts/config/webpack.config.dev.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,13 @@ module.exports = function(publicPath) {
137137
{
138138
exclude: [
139139
/\.html$/,
140-
/\.(js|jsx)$/,
140+
// 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)(\?.*)?$/,
141147
/\.css$/,
142148
/\.json$/,
143149
/\.svg$/

0 commit comments

Comments
 (0)