mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 05:25:38 +07:00
15 lines
250 B
JavaScript
15 lines
250 B
JavaScript
const withNextra = require('nextra')({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.tsx',
|
|
})
|
|
|
|
module.exports = withNextra({
|
|
i18n: {
|
|
locales: ['en', 'id'],
|
|
defaultLocale: 'en',
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
})
|