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);