all repos — caroster @ 18a28ad5ae5c260a6a5f132045b824272c1b90ae

[Octree] Group carpool to your event https://caroster.io

fix: 🐛  Pages without getServerSideProps are not built
Simon Mulquin simon@octree.ch
Thu, 19 Jan 2023 14:00:05 +0000
commit

18a28ad5ae5c260a6a5f132045b824272c1b90ae

parent

b1539af58f4a38c2c5c600d2ccbe83f8f4532cf8

M frontend/pages/_error.tsxfrontend/pages/_error.tsx

@@ -26,4 +26,8 @@ </Box>

); }; +export async function getServerSideProps(props) { + return props +} + export default NotFoundPage;
M frontend/pages/auth/lost-password.tsxfrontend/pages/auth/lost-password.tsx

@@ -12,4 +12,8 @@ </Layout>

); }; +export async function getServerSideProps(props) { + return props +} + export default LostPassword;
M frontend/pages/auth/register/index.tsxfrontend/pages/auth/register/index.tsx

@@ -91,4 +91,8 @@ </Layout>

); }; +export async function getServerSideProps(props) { + return props +} + export default MailSignup;
M frontend/pages/auth/register/mail.tsxfrontend/pages/auth/register/mail.tsx

@@ -19,4 +19,8 @@ </Layout>

); }; +export async function getServerSideProps(props) { + return props +} + export default MailSignup;
M frontend/pages/auth/reset.tsxfrontend/pages/auth/reset.tsx

@@ -47,4 +47,8 @@ </Layout>

); }; +export async function getServerSideProps(props) { + return props +} + export default ResetPassword;