feat(i18n): add Italian and Spanish to locale config and middleware

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-10 14:07:16 -04:00
parent 09b91b1292
commit 8a7267e769
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
export const locales = ['en', 'fr'] as const
export const locales = ['en', 'fr', 'it', 'es'] as const
export const defaultLocale = 'en' as const
export type Locale = (typeof locales)[number]