Skip to content

Commit b23b90c

Browse files
committed
Fixes dev port.
1 parent 24aa685 commit b23b90c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extension/src/webview/WebviewServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export class WebviewServer {
6363
expression?: string;
6464
mode: "standalone" | "webviewIFrame";
6565
}): string {
66-
const port = process.env.USE_DEV_UI ? 8081 : this.port;
66+
const port = process.env.USE_DEV_UI ? 8080 : this.port;
6767
const params: Record<string, string> = {
6868
serverPort: this.port.toString(),
6969
serverSecret: this.secret,

0 commit comments

Comments
 (0)