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.
1 parent 84a516c commit 8e108eaCopy full SHA for 8e108ea
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