Skip to content

Commit 2161d30

Browse files
committed
Removed fuma-docs search
1 parent a71478b commit 2161d30

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

apps/docs/app/layout.config.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
};

apps/docs/app/layout.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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
);

apps/docs/next.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const withMDX = createMDX();
55
/** @type {import('next').NextConfig} */
66
const config = {
77
reactStrictMode: true,
8+
output: 'export',
89
};
910

1011
export default withMDX(config);

0 commit comments

Comments
 (0)