8 lines
257 B
TypeScript
8 lines
257 B
TypeScript
import { languageService } from '$lib/server/LanguageService'
|
|
import type { LayoutServerLoad } from './$types'
|
|
|
|
export const load: LayoutServerLoad = async () => {
|
|
const translations = await languageService.getTranslations(['de'])
|
|
return translations
|
|
}
|