Skip to content

Commit 9f6c0c7

Browse files
Add autoStartBrowser
1 parent 646fc7c commit 9f6c0c7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/extension/debugger/configuration/providers/djangoLaunch.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export async function buildDjangoLaunchDebugConfiguration(
3131
program: program || defaultProgram,
3232
args: ['runserver'],
3333
django: true,
34+
autoStartBrowser: false
3435
};
3536
if (!program) {
3637
const selectedProgram = await input.showInputBox({

src/extension/debugger/configuration/providers/flaskLaunch.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export async function buildFlaskLaunchDebugConfiguration(
3232
},
3333
args: ['run', '--no-debugger', '--no-reload'],
3434
jinja: true,
35+
autoStartBrowser: false
3536
};
3637

3738
if (!application) {

0 commit comments

Comments
 (0)