campfire/src/routes/+page.js

7 lines
133 B
JavaScript
Raw Normal View History

2024-06-29 15:52:52 +01:00
export const prerender = true;
export const ssr = false;
export async function load({ url }) {
return { path: url.pathname };
}