Thanks for sharing screen shot. Below are the findings :
The Applications logs contain an error- Cannot find module '/home/site/wwwroot/dist/index.js'
The Application maybe missing a Node module
which is causing your app to fail proper startup.
Suggest you to refer this article to deploy your app properly.
Further I can see that you are running on Basic SKU Consider running a production application on a Standard, Premium, or Isolated App Service Plan for better performance and isolation. These SKUs are best for production workloads, but there are other SKU options (Free, Shared, Basic) if you are still in testing mode.
Check: Azure App Service Plan Pricing Information
Also, your webapp is currently configured to run on two instances. Since you have only two instances you can expect a downtime of upto 50% because when the App Service platform is upgraded, the instance on which your web app is hosted will be upgraded. Therefore, your web app process will be restarted and may experience some downtime as each instance is restarted sequentially.
Consider Scaling out to three instances. These instances are in different upgrade domains and hence will not be upgraded at the same time. While one worker instance is getting upgraded the other is still active to serve web requests.
Check: Scale instance count manually or automatically
Hope this helps. Let us know if issue remains.