We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcd0f37 commit c0a03a1Copy full SHA for c0a03a1
1 file changed
apps/website/next.config.ts
@@ -1,4 +1,6 @@
1
import type { NextConfig } from "next";
2
+
3
+import { globals } from "@/globals";
4
import { withContentCollections } from "@content-collections/next";
5
6
const nextConfig: NextConfig = {
@@ -27,6 +29,11 @@ const nextConfig: NextConfig = {
27
29
destination: "/docs/react/blocks/inline-code",
28
30
permanent: true,
31
},
32
+ {
33
+ source: "/git",
34
+ destination: globals.githubUrl,
35
+ permanent: true,
36
+ },
37
];
38
39
};
0 commit comments