initial commit, lesson 1

This commit is contained in:
andres
2023-06-23 17:50:25 +02:00
parent e20bdb8eef
commit e190c8c698
44 changed files with 3424 additions and 498 deletions

View File

@@ -1,6 +1,12 @@
const withNextra = require('nextra')({
defaultShowCopyCode: true,
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
})
module.exports = withNextra()
module.exports = withNextra({
i18n: {
locales: ['en', 'ru'],
defaultLocale: 'en',
},
})