nextjs で 404 を返す方法
Nov 21, 2020 08:49 · 141 words · 1 minute read
nextjs の SSR で 404 を返すには、getServerSideProps
でこうする
const getServerSideProps: GetServerSideProps = async (context) => {
context.res.statusCode = 404;
return { props: { errorCode: 404 } };
};
あとはコンポーネント側でよしなに 404 ページをレンダリングすればよい
とりあえず動かす段階なら next ビルトインの Error ページを使ってもいいだろう