Carles - PLAVED
Carles - PLAVED

Reputation: 55

How can I deploy a create-react-app through npm?

When I try to deploy a CRA with npm run build everything works fine, but when I head to localhost:5000, I get 404 Requested path could not be found, and in dev. console Failed to load resource: the server responded with a status of 404 (Not Found).

How should I deploy my CRA's? Everything works fine on development build.

Upvotes: 1

Views: 621

Answers (1)

Carles - PLAVED
Carles - PLAVED

Reputation: 55

The fact was: The terminal told me to use serve -s build but it failed when was ran from the /build folder. When I run serve -s from inside of the /build folder, everything is working properly!

Cheers!

Upvotes: 1

Related Questions