Skip to content

Commit a9f6947

Browse files
ci: apply automated fixes
1 parent 2482cb2 commit a9f6947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/start-plugin-core/src/prerender.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export async function prerender({
2828

2929
if (startConfig.prerender.autoStaticPathsDiscovery ?? true) {
3030
// merge discovered static pages with user-defined pages
31-
const pagesMap = new Map(pages.map(item => [item.path, item]));
32-
const discoveredPages = globalThis.TSS_PRERENDABLE_PATHS || [];
31+
const pagesMap = new Map(pages.map((item) => [item.path, item]))
32+
const discoveredPages = globalThis.TSS_PRERENDABLE_PATHS || []
3333

3434
for (const page of discoveredPages) {
3535
if (!pagesMap.has(page.path)) {

0 commit comments

Comments
 (0)