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 296caf8 commit a075342Copy full SHA for a075342
src/command/render/render-shared.ts
@@ -178,8 +178,9 @@ export async function printBrowsePreviewMessage(
178
info(`\nPreview server: ${previewURL(host, port, path = "")}`);
179
info(`\nBrowse at ${url}`, { format: colors.green });
180
} else if (isVSCodeTerminal() && isVSCodeServer()) {
181
+ const sep = path.startsWith("/") ? "" : "/";
182
const browseUrl = vsCodeServerProxyUri()!.replace("{{port}}", `${port}`) +
- path;
183
+ sep + path;
184
info(`\nBrowse at ${browseUrl}`, { format: colors.green });
185
} else if (isJupyterHubServer()) {
186
const httpReferrer = `${
0 commit comments