Prompt-Engineering-Guide/next.config.js
Elvis Saravia 33065de5ae changes
2023-04-04 14:47:21 -06:00

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'
}
})