mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
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;
|