Skip to content

Commit

Permalink
Update next.config.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomano authored Dec 11, 2024
1 parent a8c11a8 commit d6b0188
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/next.config.mjs
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit d6b0188

Please sign in to comment.