File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
Expand file tree Collapse file tree 4 files changed +13
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ export const baseOptions: BaseLayoutProps = {
2626 ) ,
2727 } ,
2828 links : [
29- {
30- text : "Documentation" ,
31- url : "/docs " ,
32- active : "nested-url" ,
33- } ,
29+ // {
30+ // text: "Documentation",
31+ // url: "/",
32+ // active: "nested-url",
33+ // },
3434 ] ,
3535} ;
Original file line number Diff line number Diff line change @@ -11,7 +11,13 @@ export default function Layout({ children }: { children: ReactNode }) {
1111 return (
1212 < html lang = "en" className = { inter . className } suppressHydrationWarning >
1313 < body className = "flex flex-col min-h-screen" >
14- < RootProvider > { children } </ RootProvider >
14+ < RootProvider
15+ search = { {
16+ enabled : false ,
17+ } }
18+ >
19+ { children }
20+ </ RootProvider >
1521 </ body >
1622 </ html >
1723 ) ;
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const withMDX = createMDX();
55/** @type {import('next').NextConfig } */
66const config = {
77 reactStrictMode : true ,
8+ output : 'export' ,
89} ;
910
1011export default withMDX ( config ) ;
You can’t perform that action at this time.
0 commit comments