4
I have a system developed in the Angular language in version 4. The system that generates build of the application in production is the webpack. This being used as the basis the following tarter: angular 4 webpack Starter The system is finished, but it has the following problem: XHR messages are showing up during calls and I want them disabled in production to hide the calls the application makes.
Yes, I understand that, but I want to get default disabled in production without the possibility of being enabled. It has like?
– Renato Carauta Ribeiro
Unable, the browser needs to display the requests made.
– Good Bye Blue sky
There would be a way to encrypt what appears on the console about these requisitions. I wanted it to be hidden from the user to avoid hacking by the url, or something like that. It would be another way of security.
– Renato Carauta Ribeiro
You can obfuscate your request scripts and do the URL access treatments from the backend, checking if the access is legitimate/authorized. Unfortunately I can’t help you much on this topic.
– Good Bye Blue sky
Blz. This gives me some ideas on how to solve. Vlww for tips.
– Renato Carauta Ribeiro
Not at all! I recommend reading: https://stackoverflow.com/questions/5067439/obfuscating-ajax-post
– Good Bye Blue sky