-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove basePath for local development
- Loading branch information
1 parent
8139ad1
commit 9c00f93
Showing
3 changed files
with
36 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import nextra from 'nextra' | ||
import remarkMdxDisableExplicitJsx from 'remark-mdx-disable-explicit-jsx' | ||
|
||
const withNextra = nextra({ | ||
theme: 'nextra-theme-docs', | ||
themeConfig: './theme.config.jsx', | ||
latex: true, | ||
mdxOptions: { | ||
remarkPlugins: [ | ||
[ | ||
remarkMdxDisableExplicitJsx, | ||
{ whiteList: ['table', 'thead', 'tbody', 'tr', 'th', 'td'] } | ||
] | ||
] | ||
} | ||
}) | ||
|
||
export default withNextra({ | ||
output: "export", | ||
images: { | ||
unoptimized: true, | ||
}, | ||
basePath: '/epola-space-nextra' | ||
}) |