diff options
author | 2022-01-29 01:31:04 +0000 | |
---|---|---|
committer | 2022-01-29 01:31:04 +0000 | |
commit | ff8e18d2ff9fe13ca2ea757575f60690295c54a6 (patch) | |
tree | 046b5ea5593e4db565153fb896a50039b6b3ea22 | |
parent | c9bb1147cbfae20e3ecdf29ef2866a183b3b18e3 (diff) | |
download | astro-ff8e18d2ff9fe13ca2ea757575f60690295c54a6.tar.gz astro-ff8e18d2ff9fe13ca2ea757575f60690295c54a6.tar.zst astro-ff8e18d2ff9fe13ca2ea757575f60690295c54a6.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/src/core/build/static-build.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/build/static-build.ts b/packages/astro/src/core/build/static-build.ts index e70429d5c..0df6194dd 100644 --- a/packages/astro/src/core/build/static-build.ts +++ b/packages/astro/src/core/build/static-build.ts @@ -46,7 +46,7 @@ function chunkIsPage(astroConfig: AstroConfig, output: OutputAsset | OutputChunk return false; } const chunk = output as OutputChunk; - if(chunk.facadeModuleId) { + if (chunk.facadeModuleId) { const facadeToEntryId = prependForwardSlash(chunk.facadeModuleId.slice(fileURLToPath(astroConfig.projectRoot).length)); return internals.entrySpecifierToBundleMap.has(facadeToEntryId); } |