Skip to content

Commit 232f1ad

Browse files
authored
fix(assetsbundler): fix webpack dev server not beeing killed by CTRL+C in Windows (#26)
Killing server with CTRL-C in dev mode in Windows leaves webpack-dev-server running on port 8080 and never releases it fix adonisjs/core#2562
1 parent 7452f8e commit 232f1ad

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/AssetsBundler/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export class AssetsBundler extends Emittery {
3232
stdio: 'pipe' as const,
3333
localDir: this.projectRoot,
3434
cwd: this.projectRoot,
35+
windowsHide: false,
3536
env: {
3637
FORCE_COLOR: 'true',
3738
...this.env,

0 commit comments

Comments
 (0)