import type { ParamMatcher } from '@sveltejs/kit'; export const match: ParamMatcher = (param) => { return ['de', 'en'].includes(param); };