From 59a2fbc2132f34c4be3b2d80b0fb70e90bd081c4 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Mon, 14 Oct 2024 08:45:25 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/core/app/node.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/astro/src/core/app/node.ts b/packages/astro/src/core/app/node.ts index 3ad965cd08..ff80c4e14e 100644 --- a/packages/astro/src/core/app/node.ts +++ b/packages/astro/src/core/app/node.ts @@ -87,8 +87,7 @@ export class NodeApp extends App { const portInHostname = typeof hostname === 'string' && /:\d+$/.test(hostname); const hostnamePort = portInHostname ? hostname : `${hostname}${port ? `:${port}` : ''}`; - - + const url = `${protocol}://${hostnamePort}${req.url}`; const options: RequestInit = { method: req.method || 'GET',