Prompt-Engineering-Guide/next.config.js

12 lines
220 B
JavaScript
Raw Normal View History

2023-03-10 23:22:18 +00:00
const withNextra = require('nextra')({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
})
2023-03-31 00:43:20 +00:00
module.exports = withNextra({
i18n: {
2023-04-04 20:47:21 +00:00
locales: ['en', 'zh', 'jp', 'pt'],
2023-03-31 00:43:20 +00:00
defaultLocale: 'en'
}
})