campfire/src/routes/+page.js

6 lines
133 B
JavaScript

export const prerender = true;
export const ssr = false;
export async function load({ url }) {
return { path: url.pathname };
}