summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-01-04 14:36:34 +0000
committerGravatar GitHub Actions <actions@github.com> 2022-01-04 14:36:34 +0000
commit670bebe9ae7ef10386920a7503e7f17db3a815eb (patch)
treecb32622f60fc224df3bfcd86b5a8d4ba4a23b2a7
parent9db22b97b604e2ab1908b28e3461aefb222dcf97 (diff)
downloadastro-670bebe9ae7ef10386920a7503e7f17db3a815eb.tar.gz
astro-670bebe9ae7ef10386920a7503e7f17db3a815eb.tar.zst
astro-670bebe9ae7ef10386920a7503e7f17db3a815eb.zip
[ci] yarn format
-rw-r--r--packages/astro/src/core/ssr/index.ts2
1 files changed, 1 insertions, 1 deletions
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 {