8 lines
262 B
TypeScript
8 lines
262 B
TypeScript
import type { GetServerSidePropsContext } from "next";
|
|
|
|
import { getRoutedUrl } from "@calcom/lib/server/getRoutedUrl";
|
|
|
|
export const getServerSideProps = async function getServerSideProps(context: GetServerSidePropsContext) {
|
|
return getRoutedUrl(context);
|
|
};
|