I am using nuxt and laravel in my project and using axios to send http request into the backend server. The problem is that whenever a request is made and data is returned the console and network tab of browser by default shows the url where request has been made and the data returned from the url. How can I prevent the console and network tab from showing these details as it is creating security issues in the application?
I have already tried with debug: false in axios module of nuxt.config.js file and same in .env file of laravel
In nuxt.config.js file axios: { proxyHeaders: false, credentials: false, proxy: false, debug: false }, In .env file of laravel APP_DEBUG=false
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire