fix crawling

This commit is contained in:
vcoppe
2025-11-10 18:37:31 +01:00
parent e334419e24
commit 36c6c623de
8 changed files with 48 additions and 23 deletions

View File

@@ -0,0 +1,6 @@
import { languages } from '$lib/languages';
import type { EntryGenerator } from './$types';
export const entries: EntryGenerator = () => {
return Object.keys(languages).map((lang) => ({ language: lang == 'en' ? '' : lang }));
};