We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e68f11 commit 55593b3Copy full SHA for 55593b3
web/next.config.mjs
@@ -6,7 +6,7 @@ const withMDX = createMDX()
6
7
/** @type {import('next').NextConfig} */
8
const config = {
9
- reactStrictMode: true,
+ reactStrictMode: true,
10
redirects() {
11
return [
12
{
@@ -15,7 +15,7 @@ const config = {
15
permanent: true,
16
},
17
]
18
- }
19
-};
+ },
+}
20
21
export default withMDX(config)
web/src/lib/layout.shared.tsx
@@ -1,11 +1,11 @@
1
import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'
2
3
export function baseOptions(): BaseLayoutProps {
4
- return {
+ return {
5
githubUrl: 'https://github.com/hckhanh/fast-url',
nav: {
- title: "fast-url",
+ title: 'fast-url',
url: '/docs',
- },
- };
+ }
}
0 commit comments