Reputation: 15544
I have moved my dev MEAN app from my laptop onto Azure. I have set off of grunt's livereload flags to false, but, livereload.js is still being loaded, and its absolutelly killing me! It take like 30 seconds(!) waiting for livereload.js Is there a way to get rid of it altogether?
Upvotes: 0
Views: 1105
Reputation: 553
Steps to fully remove livereload
in your app if running in development
mode:
gruntfile
by giving options.livereload = false
for your watch task.app/views/layout.server.view.html
.Upvotes: 3