Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
The “STATICSITE 1.0” option shown in the tutorial is no longer a current App Service runtime. For React or other SPA frontends, the recommended approach today is to use Azure Static Web Apps, and keep your Node.js API on Azure App Service.
The “Your web app is running and waiting for your content” page usually means App Service isn’t serving the React build output (for example, build/ or dist/), even if the pipeline succeeds.
Best practice is:
• React frontend > Azure Static Web Apps
• Backend API >Azure App Service (Node.js)
Reference:
https://learn.microsoft.com/en-us/azure/static-web-apps/deploy-react?pivots=github
https://learn.microsoft.com/en-us/azure/static-web-apps/
lease do not forget to click "Accept the answer” and Yes, this can be beneficial to other community members.
If you have any other questions, let me know in the "comments" and I would be happy to help you