I just deploy my react js app with vite into app service, but it always got failed on deployment. When I look in deployment log it just showing:
[2023-02-25 10:47:44] yarn run v1.22.19
[2023-02-25 10:47:44] $ vite
[2023-02-25 10:47:46]
[2023-02-25 10:47:46] VITE v4.1.4 ready in 1197 ms
[2023-02-25 10:47:46]
[2023-02-25 10:47:46] ➜ Local: http://127.0.0.1:5173/
[2023-02-25 10:47:46] ➜ Network: use --host to expose
[]
What should I do?
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.
Hi there,
Rather than running React as an actual service, I would recommend deploying it as a static website.
You can follow the steps on how to do that here:
https://www.digitalocean.com/community/tutorials/how-to-deploy-a-react-application-to-digitalocean-app-platform
Hope that this helps!
Best,
Bobby