From d38015c737521899310f08b67dccc5da16b6f706 Mon Sep 17 00:00:00 2001 From: zomars Date: Fri, 14 Oct 2022 13:02:53 -0600 Subject: [PATCH] Locale fixes --- next-i18next.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/next-i18next.config.js b/next-i18next.config.js index c985d846fc..a64f3380b0 100644 --- a/next-i18next.config.js +++ b/next-i18next.config.js @@ -3,8 +3,10 @@ const i18nConfig = require("@calcom/config/next-i18next.config"); /** @type {import("next-i18next").UserConfig} */ const config = { - ...i18nConfig, - localeDetection: false, + i18n: { + ...i18nConfig, + localeDetection: false, + }, localePath: path.resolve("../web/public/static/locales"), };