summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2023-01-03 14:00:46 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2023-01-03 14:00:46 +0000
commit19be918c59b783926ba72f9ef9ceef2ca960eeac (patch)
tree9ca09793f9091a25ad27f8000931493d3564d1eb
parentfe316be86f4dfecff78effbecdc10f7348406d27 (diff)
downloadastro-19be918c59b783926ba72f9ef9ceef2ca960eeac.tar.gz
astro-19be918c59b783926ba72f9ef9ceef2ca960eeac.tar.zst
astro-19be918c59b783926ba72f9ef9ceef2ca960eeac.zip
[ci] format
-rw-r--r--packages/astro/src/core/build/vite-plugin-ssr.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/core/build/vite-plugin-ssr.ts b/packages/astro/src/core/build/vite-plugin-ssr.ts
index f35a5270a..9de0051fc 100644
--- a/packages/astro/src/core/build/vite-plugin-ssr.ts
+++ b/packages/astro/src/core/build/vite-plugin-ssr.ts
@@ -163,8 +163,8 @@ function buildManifest(
for (const pageData of eachServerPageData(internals)) {
const scripts: SerializedRouteInfo['scripts'] = [];
if (pageData.hoistedScript) {
- const hoistedValue = pageData.hoistedScript.value
- const value = hoistedValue.endsWith('.js') ? joinBase(hoistedValue) : hoistedValue
+ const hoistedValue = pageData.hoistedScript.value;
+ const value = hoistedValue.endsWith('.js') ? joinBase(hoistedValue) : hoistedValue;
scripts.unshift(
Object.assign({}, pageData.hoistedScript, {
value,