From 46cdd44eb6013e1684629ecf988af75a4fbecd62 Mon Sep 17 00:00:00 2001 From: Bugo Date: Thu, 12 Dec 2024 00:08:31 +0500 Subject: [PATCH] Update next.config.mjs --- docs/next.config.mjs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/next.config.mjs b/docs/next.config.mjs index d5439a8..9f245b8 100644 --- a/docs/next.config.mjs +++ b/docs/next.config.mjs @@ -2,16 +2,16 @@ import nextra from 'nextra'; const nextConfig = { output: 'export', - //basePath: '/Optimus', + basePath: '/Optimus', + i18n: { + locales: ['en', 'ru'], + defaultLocale: 'en', + }, }; const withNextra = nextra({ theme: 'nextra-theme-docs', themeConfig: './theme.config.jsx', - i18n: { - locales: ['en', 'ru'], - defaultLocale: 'en', - }, }); -export default withNextra(nextConfig) +export default withNextra(nextConfig);