We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4310751 commit c1b692fCopy full SHA for c1b692f
next.config.js
@@ -1,7 +1,7 @@
1
/** @type {import('next').NextConfig} */
2
-const withNextra = require('nextra')({
3
- theme: 'nextra-theme-docs',
4
- themeConfig: './theme.config.jsx'
+const withNextra = require("nextra")({
+ theme: "nextra-theme-docs",
+ themeConfig: "./theme.config.jsx",
5
});
6
7
module.exports = withNextra();
theme.config.jsx
export default {
- logo: <span>My Nextra Documentation</span>,
- project: {
- link: 'https://github.com/poac-dev/poac'
- }
- // ... other theme options
-}
+ logo: <span>My Nextra Documentation</span>,
+ project: {
+ link: "https://github.com/poac-dev/poac",
+ },
+ // ... other theme options
+};
0 commit comments