diff --git a/src/routes/directory/[slug]/+page.ts b/src/routes/directory/[slug]/+page.ts index 8724bcc..eb91b6b 100644 --- a/src/routes/directory/[slug]/+page.ts +++ b/src/routes/directory/[slug]/+page.ts @@ -4,6 +4,8 @@ import type { PageLoad } from './$types'; import { svgs } from '@/data/svgs'; import type { iSVG } from '@/types/svg'; +export const prerender = true; + export const load = (async ({ params }) => { const { slug } = params; @@ -15,7 +17,7 @@ export const load = (async ({ params }) => { // Filter out the svg with the matching slug: const svgsByCategory = svgs.filter((svg: iSVG) => { if (Array.isArray(svg.category)) { - return svg.category.some(categoryItem => categoryItem.toLowerCase() === slug); + return svg.category.some((categoryItem) => categoryItem.toLowerCase() === slug); } else { return svg.category.toLowerCase() === slug; }