From 23a749141f806494b0ba026d66e38e44a439a222 Mon Sep 17 00:00:00 2001 From: titix Date: Wed, 17 Jul 2024 18:31:09 -0300 Subject: [PATCH] fix: static path --- next-i18next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next-i18next.config.js b/next-i18next.config.js index 26c8323..f9c971b 100644 --- a/next-i18next.config.js +++ b/next-i18next.config.js @@ -7,6 +7,6 @@ module.exports = { i18n: { locales: ['en', 'es'], defaultLocale: 'en', - localePath: path.resolve('./locales') + localePath: path.resolve('./public/static/locales') }, };