Prompt-Engineering-Guide/next.config.js

13 lines
284 B
JavaScript
Raw Normal View History

2023-03-11 07:22:18 +08:00
const withNextra = require('nextra')({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
2023-10-05 01:53:35 +08:00
latex: true
2023-03-11 07:22:18 +08:00
})
2023-03-31 08:43:20 +08:00
module.exports = withNextra({
i18n: {
2023-06-05 01:45:08 +08:00
locales: ['en', 'zh', 'jp', 'pt', 'tr', 'es', 'it', 'fr', 'kr', 'ca', 'fi', 'ru'],
defaultLocale: 'en',
},
2023-03-31 08:43:20 +08:00
})