From e938ca7fd72338989faa3e421170b9091927340d Mon Sep 17 00:00:00 2001 From: Kyle Cutler Date: Tue, 27 Jan 2026 16:12:00 -0800 Subject: [PATCH] Open integrated browser to the side --- src/editorPreview/previewManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editorPreview/previewManager.ts b/src/editorPreview/previewManager.ts index 9a4d0b9..39b3bec 100644 --- a/src/editorPreview/previewManager.ts +++ b/src/editorPreview/previewManager.ts @@ -68,7 +68,7 @@ export class PreviewManager extends Disposable { // Check if we should use the integrated browser instead if (await SettingUtil.shouldUseIntegratedBrowser()) { const url = `http://${connection.host}:${connection.httpPort}${path}`; - await vscode.commands.executeCommand(INTEGRATED_BROWSER_COMMAND, url); + await vscode.commands.executeCommand(INTEGRATED_BROWSER_COMMAND, { url, openToSide: true }); return; }