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