Link

Troubleshooting

This section will help you with troubleshooting errors in the environment.

Table of contents

  1. Error: Cannot find module ‘babel-preset-env’
  2. Cannot find module “module” from path

Error: Cannot find module ‘babel-preset-env’

Error: Cannot find module 'babel-preset-env' from '/Users/homerli/Desktop/Simple-react-app'<br>- Did you mean "@babel/env"?

How to solve: This happens because babel has updated their default setting in their package. Therefore, you need to change the .babelrc file to the following code and restart the server.

{
	"presets": ["@babel/env", "@babel/preset-react"]
}

Cannot find module “module” from path

How to solve: npm install the missing module.