mirror of
https://github.com/ershisan99/flashcards-docs.git
synced 2025-12-16 20:59:26 +00:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
const withNextra = require('nextra')({
|
|
defaultShowCopyCode: true,
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.tsx',
|
|
})
|
|
|
|
module.exports = withNextra({
|
|
i18n: {
|
|
locales: ['en', 'ru'],
|
|
defaultLocale: 'en',
|
|
},
|
|
})
|