Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Have you wired your backend server correctly? From the looks of it, you are attempting to serve the client and server from the same host? If so, are you pointing the server to your build correctly? Here’s a reference from the create-react-app documentation
https://create-react-app.dev/docs/deployment#other-solutions
My hunch is that your client app is the only thing deployed and your server is not running on the same host or is not setup correctly. You want your server to power the client and send the build back on non-api paths as shown in the example at the link above.
Thanks my problem is fixed. I created separate project for react and node and tried deploying using app platform. It worked. Earlier I was having single project fro both of them