config.ts erstellen

This commit is contained in:
Marvin 2025-04-23 15:50:29 +02:00 committed by GitHub
parent b3159de732
commit 9001135f92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

4
src/i18n/config.ts Normal file
View file

@ -0,0 +1,4 @@
export type Locale = (typeof locales)[number];
export const locales = ['en', 'de'] as const;
export const defaultLocale: Locale = 'en';