2
0
Files
cal/calcom/apps/web/server/lib/auth/verify/getServerSideProps.tsx
2024-08-09 00:39:27 +02:00

12 lines
242 B
TypeScript

import type { GetServerSidePropsContext } from "next";
export const getServerSideProps = async (_context: GetServerSidePropsContext) => {
const EMAIL_FROM = process.env.EMAIL_FROM;
return {
props: {
EMAIL_FROM,
},
};
};