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.

【Next.js】Failed to load next.config.jsのエラーが出たら見るべき場所

Posted at

エラー内容

error - Failed to load next.config.js, see more info here https://nextjs.org/docs/messages/next-config-error
...
export default nextConfig;
^^^^^^

Next.jsで開発をしているときに
yarn dev or npm run devでローカルサーバーを立ち上げたときに上記のエラーが発生した場合

解決方法

エラーの内容の通りnext.config.jsに関するエラー。
【原因】

next.config.js
const nextConfig = {
//...内容は略
};

export default nextConfig;
  1. 上記のようにECMASCRIPTの記述の場合はファイルの拡張子をjsからmjsに変更することで改善できる。

【公式ドキュメント参考】

  1. 拡張子はそのままにしてmodule.exports = { ... で記述することで改善できる
next.config.js
module.exports = {
//...内容は略
};

初期設定から基本的に触らなければ起きないエラーだと思いますが日本語の記事など少なく感じたので、困ったら参考になれば幸いです。

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?