dev server stops updating if the user saves while the HTML is in an invalid state #29907
Closed
1 task done
Labels
angular/build:dev-server
area: @angular/build
freq1: low
Only reported by a handful of users who observe it rarely
severity5: regression
type: bug/fix
Command
serve
Is this a regression?
The previous version in which this bug was not present was
19
Description
The following is in an empty project created via
ng new
with all defaults selected.First I run the dev server and open my Chrome browser (clean install, no extensions installed).
I have the following code saved in my
app.component.html
:I delete the opening
<strong>
tag, and save (or my editor auto-saves, which makes this annoying).In my terminal, I see the dev server has reported the problem:
Oops! I add the opening tag back and save again:
The dev server rebuilds, no errors this time.
But my browser now displays this error:
My browser's console logs:
And now my browser is stuck on the page displaying the error, and won't reload on any more changes.
As a developer, I expect the dev server to recover every time I save.
Apologies if this is a duplicate, or belongs in another repo (vite? another Angular repo?). I couldn't find a report exactly like this.
Minimal Reproduction
Environment: This happens when running the dev server directly on my development machine. I can't reproduce this in StackBlitz after saving ~20 times.
ng serve
app.component.html
to<p><strong>foo</strong></p>
app.component.html
to<p>foo</strong></p>
. Save.app.component.html
to<p><strong>foo</strong></p>
. Save.ɵgetOrCreateAngularServerApp is not a function
, if it reloads properly, repeat steps 5 and 6 a few times until it doesn't reload.Video
20250321-0523-21.7071165.mp4
Exception or Error
Your Environment
Anything else relevant?
No response
The text was updated successfully, but these errors were encountered: