We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a3d3bf + 8e108ea commit 296dbe9Copy full SHA for 296dbe9
lib/options.ts
@@ -48,6 +48,12 @@ export class Options {
48
this.argv.bundle = undefined;
49
this.argv.hmr = false;
50
}
51
+
52
+ if (this.argv.debugBrk) {
53
+ // we cannot use HMR along with debug-brk because we have to restart the app
54
+ // on each livesync in order to stop and allow debugging on app start
55
+ this.argv.hmr = false;
56
+ }
57
58
59
constructor(private $errors: IErrors,
0 commit comments