Recently, I've noticed that this line of code is being inserted dynamically into my index.html file, either through Grunt tasks or directly from the server in Heroku.
<script type="text/javascript">document.write('<script src="' + (location.protocol || 'http:') + '//' + (location.hostname || 'localhost') + ':35729/livereload.js?snipver=1" type="text/javascript"><\/script>')</script>
Is there a way to prevent this script from being added to my site? It's really affecting the performance of my site and I can see frequent pending network requests.
I deploy my AngularJS App on Heroku with a Procfile that looks like this:
web: npm start
I would greatly appreciate it if someone could guide me on how to remove this unwanted script.