7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
import type { ServerLoad } from '@sveltejs/kit';
|
|
|
|
export const load: ServerLoad = async ({ locals: { user } }) => {
|
|
return {
|
|
user
|
|
};
|
|
};
|