Files
calendar/apps/web/server/lib/router/getServerSideProps.ts
T
Benny JooandGitHub d7960021aa perf: do not import from @calcom/lib/server barrel file (#19579)
* do not import from lib/server barrel file

* fix build
2025-02-26 18:10:52 -03:00

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);
};