Theme config
In addition to Next's configuration (opens in a new tab), Nextra provides robust customization options. You can also target the .nextra-*
classes in your CSS for further design tweaks.
β οΈ
Note the use of _app.mdx
rather than _app.tsx
.
import '@/styles/globals.css'
export default function App({ Component, pageProps }) {
return (
<>
<Component {...pageProps} />
</>
)
}