feat: add documentation link and redirect to WIKI_URI

This commit is contained in:
Dries Augustyns
2026-02-17 10:30:17 +01:00
parent a928666dfc
commit 4c81d9ec04
2 changed files with 27 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import {WIKI_URI} from '../lib/constants';
import type {GetServerSideProps} from 'next';
export default function Docs() {
return null;
}
export const getServerSideProps: GetServerSideProps = async () => {
return {
redirect: {
destination: WIKI_URI,
permanent: false,
},
};
};