mirror of
https://github.com/samsonjs/immich.git
synced 2026-06-25 05:09:12 +00:00
12 lines
215 B
TypeScript
12 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;
|