diff options
author | 2021-11-11 19:36:54 +0000 | |
---|---|---|
committer | 2021-11-11 19:36:54 +0000 | |
commit | 859b451ca9636e32c348ba1e1717e1c3a0d7a1b9 (patch) | |
tree | e6df7f7785b6dcd0f636b88009011e3eae48843a | |
parent | 2da90d24d021f0c2de32e91a42ec4fc50eb5ab90 (diff) | |
download | astro-859b451ca9636e32c348ba1e1717e1c3a0d7a1b9.tar.gz astro-859b451ca9636e32c348ba1e1717e1c3a0d7a1b9.tar.zst astro-859b451ca9636e32c348ba1e1717e1c3a0d7a1b9.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/src/vite-plugin-build-html/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/vite-plugin-build-html/index.ts b/packages/astro/src/vite-plugin-build-html/index.ts index c40f166ad..efeb1a05a 100644 --- a/packages/astro/src/vite-plugin-build-html/index.ts +++ b/packages/astro/src/vite-plugin-build-html/index.ts @@ -108,8 +108,8 @@ export function rollupPluginAstroBuildHTML(options: PluginOptions): VitePlugin { } } - for(const script of findExternalScripts(document)) { - if(isHoistedScript(script)) { + for (const script of findExternalScripts(document)) { + if (isHoistedScript(script)) { debugger; const astroScript = getAttribute(script, 'astro-script'); const src = getAttribute(script, 'src'); |