-
-
Notifications
You must be signed in to change notification settings - Fork 27.1k
Closed
Milestone
Description
Cross-posting from webpack/webpack#3974 (comment) for visibility.
I can consistently reproduce this in CRA codebase:
git clone https://github.com/facebookincubator/create-react-app.git
cd create-react-app
git checkout 9e733b57f8ae7ae3df46d95910d255798107448f
npm install
npm start
Then edit packages/react-scripts/template/src/App.js
to have an empty block in the render
method:
Press save. The browser will reload.
Then edit it to remove the empty block and press save.
You will see the error:
Unfortunately some internal state appears corrupted because even if I refresh the page, I keep getting the broken bundle. It only gets fixed by a restart of the server.
vjpr, maciej-gurban and 1j01