mirror of
https://github.com/evroon/bracket.git
synced 2026-01-13 08:30:24 -05:00
17 lines
352 B
JavaScript
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
|
|
}
|
|
})
|