mirror of
https://github.com/dair-ai/Prompt-Engineering-Guide
synced 2024-11-02 15:40:13 +00:00
12 lines
234 B
JavaScript
12 lines
234 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'],
|
|
defaultLocale: 'en',
|
|
},
|
|
})
|