You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(@angular/build): Ctrl + C not terminating dev-server with SSR
This commit provides a workaround for #28336, which occurs due to the interaction between `zone.js` and `listr2`. The issue prevents proper termination of the development server using Ctrl + C when dev-server.
Closes: #28336
// This is a workaround for https://github.com/angular/angular-cli/issues/28336, which is caused by the interaction between `zone.js` and `listr2`.
107
+
process.once('SIGINT',()=>{
108
+
process.kill(process.pid);
109
+
});
110
+
}
104
111
}
105
112
106
113
// Set all packages as external to support Vite's prebundle caching
0 commit comments