Reputation: 451
I have an angular app running V8, while i inspect the response to initial request is Please enable JavaScript to continue using this application.
rendered in html document. Post of the initial request everything works fine(the app works as expected). I am trying to understand why am i getting the issue - if js wasn't enabled the app wouldn't work.
The image is from chrome console preview of initial request.
Upvotes: 0
Views: 5906
Reputation: 944116
The image is from chrome console preview of initial request.
Because the Chrome Console preview doesn't download and execute all the JavaScript that would replace that message (and you have that message in the HTML document instead of using server side rendering which would provide better food for search engines and make a more robust application).
Upvotes: 2