Files
bracket/docs/next.config.mjs
2025-05-30 23:48:19 +02:00

17 lines
351 B
JavaScript

import nextra from 'nextra'
const withNextra = nextra({
contentDirBasePath: '/docs'
})
export default withNextra({
reactStrictMode: true,
trailingSlash: true,
skipTrailingSlashRedirect: true,
// Export only when building in GitHub Actions
output: process.env.GITHUB_ACTION ? 'export' : 'export',
images: {
unoptimized: true
}
})