Prompt-Engineering-Guide/next.config.js

12 lines
270 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-06-04 17:45:08 +00:00
locales: ['en', 'zh', 'jp', 'pt', 'tr', 'es', 'it', 'fr', 'kr', 'ca', 'fi', 'ru'],
defaultLocale: 'en',
},
2023-03-31 00:43:20 +00:00
})