When I was working on the Microsoft Teams Personal app development, which has the code deployed to the Azure App Service and the backend is in .net core app.

Everything was working as expected, but suddenly, one day, it started to give the below error.

Error

After spending around 7 hours trying to find the solution, I was able to find the solution to this error.

Solution

Whenever you are deploying your code in the Microsoft Azure app service, it will not require npm runs to start, so you need to go and disable or comment out those lines, and then your code will start working as expected.

Microsoft Azure

Happy coding!