How do I fix module not found: error: can't resolve 'web-vitals' in React project?

To fix the "Module not found: Error: Can't resolve 'web-vitals'" in your React project:

Run the following command in your project directory:

bash
CopyEdit
<span><span>npm install web-vitals<br></span></span>

Or if you're using Yarn:
bash
CopyEdit
<span><span>yarn add web-vitals<br></span></span>
Then restart your development server. This will resolve the missing module error.
 
Back
Top