mirror of
https://github.com/immich-app/immich.git
synced 2025-11-26 08:15:17 -05:00
7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
import { systemConfigManager } from '$lib/stores/system-config-manager.svelte';
|
|
import type { LayoutLoad } from './$types';
|
|
|
|
export const load = (async () => {
|
|
await systemConfigManager.init();
|
|
}) satisfies LayoutLoad;
|