2021-10-12 09:35:44 +00:00
|
|
|
function RedirectPage() {
|
|
|
|
return null;
|
2021-04-10 12:02:35 +00:00
|
|
|
}
|
|
|
|
|
2021-10-12 09:35:44 +00:00
|
|
|
export async function getServerSideProps() {
|
|
|
|
return { redirect: { permanent: false, destination: "/integrations" } };
|
2021-07-30 23:05:38 +00:00
|
|
|
}
|
2021-10-12 09:35:44 +00:00
|
|
|
|
|
|
|
export default RedirectPage;
|