mirror of
https://github.com/dair-ai/Prompt-Engineering-Guide
synced 2024-10-31 21:20:13 +00:00
12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
const withNextra = require('nextra')({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.tsx',
|
|
})
|
|
|
|
module.exports = withNextra({
|
|
i18n: {
|
|
locales: ['en', 'zh', 'jp', 'pt', 'tr', 'es', 'it', 'fr', 'kr', 'ca', 'fi', 'ru'],
|
|
defaultLocale: 'en',
|
|
},
|
|
})
|