React App Deploy Problem in Netlify

devded

Dedar Alam

Posted on March 1, 2021

React App Deploy Problem in Netlify

Problem 1: Build script returned non-zero exit code: 2


Solution

Example build command before the fix:

npm run build
Enter fullscreen mode Exit fullscreen mode

Example build command after the fix:

CI= npm run build
Enter fullscreen mode Exit fullscreen mode

More

For Next JS

CI= next build
Enter fullscreen mode Exit fullscreen mode

Problem 2: Netlify does not recognize the URL params when using react-router-dom


Solution

The solution is simple, add a file called _redirects to your public folder with this content

/* /index.html 200
Enter fullscreen mode Exit fullscreen mode

More

💖 💪 🙅 🚩
devded
Dedar Alam

Posted on March 1, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related