Fix hot reloading for WebpackDevServer after eject (#1721)

This commit is contained in:
Dan Abramov
2017-03-05 16:43:34 +00:00
committed by GitHub
parent be53fa5a10
commit 7daff97cec

View File

@@ -123,7 +123,13 @@ module.exports = {
{
exclude: [
/\.html$/,
/\.(js|jsx)$/,
// We have to write /\.(js|jsx)(\?.*)?$/ rather than just /\.(js|jsx)$/
// because you might change the hot reloading server from the custom one
// to Webpack's built-in webpack-dev-server/client?/, which would not
// get properly excluded by /\.(js|jsx)$/ because of the query string.
// Webpack 2 fixes this, but for now we include this hack.
// https://github.com/facebookincubator/create-react-app/issues/1713
/\.(js|jsx)(\?.*)?$/,
/\.css$/,
/\.json$/,
/\.svg$/