Files
bracket/docs/next.config.mjs
2025-07-07 13:57:35 +00:00

17 lines
352 B
JavaScript

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