summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2021-11-19 19:06:52 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-11-19 19:06:52 +0000
commiteaf1c49f7b79ef994b684ad7f2f9d33cc1a7e29c (patch)
treec17e59e0c39fe8302b3c5754875481439e640843
parent2e0c790b3af6fcd20ebcb2afd0284a8c663ada75 (diff)
downloadastro-eaf1c49f7b79ef994b684ad7f2f9d33cc1a7e29c.tar.gz
astro-eaf1c49f7b79ef994b684ad7f2f9d33cc1a7e29c.tar.zst
astro-eaf1c49f7b79ef994b684ad7f2f9d33cc1a7e29c.zip
[ci] yarn format
-rw-r--r--packages/astro/src/runtime/server/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/runtime/server/index.ts b/packages/astro/src/runtime/server/index.ts
index d140ac0da..91974a5c7 100644
--- a/packages/astro/src/runtime/server/index.ts
+++ b/packages/astro/src/runtime/server/index.ts
@@ -224,7 +224,7 @@ If you're still stuck, please open an issue on GitHub or join us at https://astr
// This is used to add polyfill scripts to the page, if the renderer needs them.
if (renderer?.polyfills?.length) {
- for(const src of renderer.polyfills) {
+ for (const src of renderer.polyfills) {
result.scripts.add({
props: { type: 'module' },
children: `import "${src}";`,