mirror of
https://github.com/evroon/bracket.git
synced 2026-01-17 02:28:40 -05:00
Use https://github.com/shuding/nextra and https://github.com/leoMirandaa/shadcn-landing-page instead of Docusaurus.
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
import nextra from 'nextra'
|
|
|
|
const withNextra = nextra({
|
|
contentDirBasePath: '/docs'
|
|
})
|
|
|
|
export default withNextra({
|
|
reactStrictMode: true,
|
|
skipTrailingSlashRedirect: true,
|
|
// Export only when building in GitHub Actions
|
|
output: process.env.GITHUB_ACTION ? 'export' : 'export',
|
|
images: {
|
|
unoptimized: true
|
|
}
|
|
})
|