mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 17:24:56 +03:00
7 lines
223 B
TypeScript
7 lines
223 B
TypeScript
import { systemConfigManager } from '$lib/managers/system-config-manager.svelte';
|
|
import type { LayoutLoad } from './$types';
|
|
|
|
export const load = (async () => {
|
|
await systemConfigManager.init();
|
|
}) satisfies LayoutLoad;
|