From 104b529435623bac7e3692429472fea2906fc755 Mon Sep 17 00:00:00 2001 From: mihai Date: Sat, 31 Aug 2024 10:01:46 -0700 Subject: [PATCH] Update i18n.ts to support ro ( Romanian ) --- src/i18n.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n.ts b/src/i18n.ts index a2fcfed..8abe4fe 100644 --- a/src/i18n.ts +++ b/src/i18n.ts @@ -1,7 +1,7 @@ import { getRequestConfig } from "next-intl/server"; import { headers } from "next/headers"; -const SUPPORTED_LANGUAGES = ['en', 'de']; +const SUPPORTED_LANGUAGES = ['en', 'de', 'ro']; export default getRequestConfig(async () => { const headersList = headers();