Skip to content

Commit d1b3409

Browse files
florian-lefebvreastrobot-houston
authored andcommitted
[ci] format
1 parent badc929 commit d1b3409

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/astro/src/core/build/plugins/plugin-ssr.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ function vitePluginSSR(
9393
const pageData2 = internals.pagesByKeys.get(pageData.key);
9494
// Always add to pageMap even if pageData2 is missing from internals
9595
// This ensures error pages like 500.astro are included in the build
96-
pageMap.push(`[${JSON.stringify(pageData2?.component || pageData.component)}, ${variable}]`);
96+
pageMap.push(
97+
`[${JSON.stringify(pageData2?.component || pageData.component)}, ${variable}]`,
98+
);
9799
i++;
98100
}
99101
}

0 commit comments

Comments
 (0)