diff --git a/projects/app/src/pages/404.tsx b/projects/app/src/pages/404.tsx index 1ab9826a7..f84b6db90 100644 --- a/projects/app/src/pages/404.tsx +++ b/projects/app/src/pages/404.tsx @@ -1,3 +1,4 @@ +import { serviceSideProps } from '@/web/common/i18n/utils'; import React, { useEffect } from 'react'; import { useRouter } from 'next/router'; @@ -10,4 +11,12 @@ const NonePage = () => { return
; }; +export async function getStaticProps(content: any) { + return { + props: { + ...(await serviceSideProps(content)) + } + }; +} + export default NonePage;