Files
OpenPipe-llm/app/src/pages/index.tsx
2023-08-06 23:23:20 -07:00

16 lines
323 B
TypeScript

import { type GetServerSideProps } from "next";
// eslint-disable-next-line @typescript-eslint/require-await
export const getServerSideProps: GetServerSideProps = async () => {
return {
redirect: {
destination: "/home",
permanent: false,
},
};
};
export default function Home() {
return null;
}