From 670bebe9ae7ef10386920a7503e7f17db3a815eb Mon Sep 17 00:00:00 2001 From: matthewp Date: Tue, 4 Jan 2022 14:36:34 +0000 Subject: [PATCH] [ci] yarn format --- packages/astro/src/core/ssr/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/core/ssr/index.ts b/packages/astro/src/core/ssr/index.ts index a739d0175..eb6e3c4e8 100644 --- a/packages/astro/src/core/ssr/index.ts +++ b/packages/astro/src/core/ssr/index.ts @@ -214,7 +214,7 @@ export async function render(renderers: Renderer[], mod: ComponentInstance, ssrO // The legacy build needs these to remain unresolved so that vite HTML // Can do the resolution. Without this condition the build output will be // broken in the legacy build. This can be removed once the legacy build is removed. - if(astroConfig.buildOptions.experimentalStaticBuild) { + if (astroConfig.buildOptions.experimentalStaticBuild) { const [, resolvedPath] = await viteServer.moduleGraph.resolveUrl(s); return resolvedPath; } else {