10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
export const load = ({ locals, cookies }) => {
|
|
const { user, isUSRegion, wsURL } = locals;
|
|
return {
|
|
user: user || undefined,
|
|
isUSRegion,
|
|
cookieConsent: cookies?.get("cookie-consent"),
|
|
wsURL,
|
|
};
|
|
};
|