0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Next.jsの`error.tsx`や`not-found.tsx`の`use client`の有無について

Last updated at Posted at 2024-09-28

はじめに

Next.jsでerorr.tsxnot-found.tsxのファイルを作成した際に、どちらもサーバーコンポーネントとして作成してbuildしたところ、erorr.tsxのみuse clientディレクティブが必要とエラーをはかれてしまいました

個人的にはuseStateuseEffectonClickonChange等を使ってないので、サーバーコンポネントで十分なのかと思ったのですが、、、

そのため、この記事ではなぜerorr.tsxのみクライエントコンポーネントである必要があるのかについて調べたことをまとめます

not-found.tsxerror.tsxについて

not-found.tsx

not-foundエラーは存在しないリソースへのリクエストだということを知らせるもののため、クライエントサイドの処理を必要としない

error.tsx

このファイルではサーバーサイドだけではなく、クライエントサイドのエラーも補足して、動作します
そのため、Next.jsのファイルの規則として、クライエントサイドでも動作することを保証する必要があるため、use clientディレクティブを使う必要がある

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?