From d6b01884382f99ad6ac34453cd5aa0f2dceb26a3 Mon Sep 17 00:00:00 2001 From: Bugo Date: Wed, 11 Dec 2024 21:04:48 +0500 Subject: [PATCH] Update next.config.mjs --- docs/next.config.mjs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/next.config.mjs b/docs/next.config.mjs index 1d142ac..d5439a8 100644 --- a/docs/next.config.mjs +++ b/docs/next.config.mjs @@ -1,15 +1,17 @@ import nextra from 'nextra'; -const withNextra = nextra({ +const nextConfig = { output: 'export', //basePath: '/Optimus', +}; + +const withNextra = nextra({ theme: 'nextra-theme-docs', themeConfig: './theme.config.jsx', -}); - -export default withNextra({ i18n: { locales: ['en', 'ru'], defaultLocale: 'en', }, }); + +export default withNextra(nextConfig)