0
votes

I created a release pipeline in Azure DevOps. Created an ARM service connection to connect with the Azure App service that I created to host my web-app. The release was successful and it showed that the deployment finished. But when I entered the app-service url, my web-app did not load. Any reason why? Thanks!

1
What type of application? Website or Web API? If WebAPI, you need to hit the exact endpoint.Prawin
Hi Prawin! Its a websiteSD4
Are you hitting the root? or any specific page? Can you try to access a specific page like example.azurewebsites.net/default.htmlPrawin
Its a basic Angular app. I want my app service to host it on successful deploymentSD4
what is the url that you are accessing?Prawin

1 Answers

0
votes

DevTools failed to load SourceMap: Could not load content for ajax.aspnetcdn.com/ajax/bootstrap/4.1.1/bootstrap.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

From the error message, it seems that this issue is related with Browser Extension.

There is a known issue in Chrome recently.

Here is a github ticket about the Chrome extension issue.

If you are using chrome Browser, you could check if the have installed the extensions mentioned in the ticket(e.g. LastPass , AdBlock).

You could try to disable them and check if it could work.

Or you could also try to use other browsers(e.g. firefox) to visit the website: example.azurewebsites.net/default.html

On the other hand, you could enable the following options in Chrome Browser F12 -> Settings.

enter image description here