Prompt-Engineering-Guide/next.config.js

13 lines
289 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-10-04 17:53:35 +00:00
latex: true
2023-03-10 23:22:18 +00:00
})
2023-03-31 00:43:20 +00:00
module.exports = withNextra({
i18n: {
2023-11-27 19:08:16 +00:00
locales: ['en', 'zh', 'jp', 'pt', 'tr', 'es', 'it', 'fr', 'kr', 'ca', 'fi', 'ru','de'],
defaultLocale: 'en',
},
2023-03-31 00:43:20 +00:00
})