hf-fast / src /routes /+page.ts
hlarcher's picture
hlarcher HF Staff
first import
6f6d8a6 unverified
raw
history blame
132 Bytes
import type { PageLoad } from './$types';
export const ssr = false;
export const load: PageLoad = ({ params }) => {
return {};
};