alt-text-frontend/pages/[...404].jsx

13 lines
201 B
JavaScript

export const getServerSideProps = async (context) => {
return {
redirect: {
permanent: false,
destination: "/",
},
};
};
export default function NotFound() {
return <></>;
}