Files
immich/web/src/routes/+layout.ts
Jason Rasmussen 9fc9465cec feat(web): link router (#10644)
feat: link router
2024-06-27 09:09:28 -04:00

22 lines
546 B
TypeScript

import { initApp } from '$lib/utils';
import { defaults } from '@immich/sdk';
import type { LayoutLoad } from './$types';
export const ssr = false;
export const csr = true;
export const load = (async ({ fetch }) => {
// set event.fetch on the fetch-client used by @immich/sdk
// https://kit.svelte.dev/docs/load#making-fetch-requests
// https://github.com/oazapfts/oazapfts/blob/main/README.md#fetch-options
defaults.fetch = fetch;
await initApp();
return {
meta: {
title: 'Immich',
},
};
}) satisfies LayoutLoad;