1
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?

More than 1 year has passed since last update.

Linux環境(CentOS)における Next.js 12系のデバッグ実行エラーの解消方法

Posted at

エラー詳細

Windows10 環境で Next.js 12系をデバッグ実行できるが、Linux 環境(CentOS)において、デバッグ起動できない場合があるらしい。

原因は Rust ベースのコンパイラ SWC を使用してコンパイルするように変更したためだが、一部のシステム・アーキテクチャとの非互換があるため、エラーを起こす場合があるとのこと。

そのため、公式サイトにもあるが、以下の .babelrc ファイルをプロジェクトルートに格納することで、エラーは表示されなくなる。

{
  "presets": ["next/babel"]
}

参考サイト

SWC Failed to Load -- 公式サイト

1
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
1
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?