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