Skip to content

Commit d0d4cba

Browse files
committed
fix code style issues
1 parent 10238aa commit d0d4cba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/serve/proxy/ngrok-proxy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export class NgrokProxy implements ProxyInterface {
88
constructor() {}
99

1010
async connect(targetUrl: URL): Promise<URL> {
11-
const targetPort = targetUrl.port || (targetUrl.protocol === "https:" ? "443" : "80");
11+
const targetPort =
12+
targetUrl.port || (targetUrl.protocol === "https:" ? "443" : "80");
1213
const targetHost = targetUrl.hostname;
1314

1415
if (!process.env.NGROK_AUTHTOKEN) {

0 commit comments

Comments
 (0)