c602eaea4a
* use svelte store * fix: websocket error when not authenticated * more routes
13 lines
215 B
TypeScript
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;
|