Files
immich/web/src/routes/+layout.ts
T
martin c602eaea4a feat(web): automatically update user info (#5647)
* use svelte store

* fix: websocket error when not authenticated

* more routes
2023-12-12 10:35:28 -06:00

13 lines
215 B
TypeScript

import type { LayoutLoad } from './$types';
export const ssr = false;
export const csr = true;
export const load = (async () => {
return {
meta: {
title: 'Immich',
},
};
}) satisfies LayoutLoad;