diff --git a/client/src/pages/login.tsx b/client/src/pages/login.tsx index 298c612..629ae10 100644 --- a/client/src/pages/login.tsx +++ b/client/src/pages/login.tsx @@ -15,4 +15,8 @@ const LoginPage: NextPage = () => { ); }; +export async function getServerSideProps() { + return { props: {} }; +} + export default LoginPage; diff --git a/client/src/pages/recover.tsx b/client/src/pages/recover.tsx index 2ee12bd..218a9fb 100644 --- a/client/src/pages/recover.tsx +++ b/client/src/pages/recover.tsx @@ -15,4 +15,8 @@ const RecoverPage: NextPage = () => { ); }; +export async function getServerSideProps() { + return { props: {} }; +} + export default RecoverPage; diff --git a/client/src/pages/reset-password.tsx b/client/src/pages/reset-password.tsx index 528ecc5..09da836 100644 --- a/client/src/pages/reset-password.tsx +++ b/client/src/pages/reset-password.tsx @@ -15,4 +15,8 @@ const ResetPasswordPage: NextPage = () => { ); }; +export async function getServerSideProps() { + return { props: {} }; +} + export default ResetPasswordPage; diff --git a/client/src/pages/signup.tsx b/client/src/pages/signup.tsx index fc7d774..677bce4 100644 --- a/client/src/pages/signup.tsx +++ b/client/src/pages/signup.tsx @@ -15,4 +15,8 @@ const SignupPage: NextPage = () => { ); }; +export async function getServerSideProps(){ + return { props: {} }; +} + export default SignupPage;