fix: do not prerender patches page

This commit is contained in:
afn 2023-04-20 22:41:54 -04:00
parent 77f0337445
commit f3665d6bda

View File

@ -1,5 +1,7 @@
import type { PageLoad } from './$types';
export const prerender = false;
export const load: PageLoad = async ({ params }) => {
const selectedPkg = params.package || undefined;
return { selectedPkg };