We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5badf2 commit 694b73dCopy full SHA for 694b73d
packages/angular_devkit/build_angular/src/webpack/configs/dev-server.ts
@@ -74,6 +74,10 @@ export async function getDevServerConfig(
74
},
75
],
76
77
+ // When setupExitSignals is enabled webpack-dev-server will shutdown gracefully which would
78
+ // require CTRL+C to be pressed multiple times to exit.
79
+ // See: https://github.com/webpack/webpack-dev-server/blob/c76b6d11a3821436c5e20207c8a38deb6ab7e33c/lib/Server.js#L1801-L1827
80
+ setupExitSignals: false,
81
compress: false,
82
static: false,
83
server: getServerConfig(root, wco.buildOptions),
0 commit comments