mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-26 13:31:45 +00:00
7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
import type { LayoutLoad } from './$types';
|
|
|
|
export const load: LayoutLoad = async ({ url }) => {
|
|
return {
|
|
url: url.pathname
|
|
};
|
|
};
|