0

I'm using Livereload for Grunt.js to reload web-page after any of watching files are being changed.

Is it possible to delete changed js or css file from the cache and reload only them, NOT reloading the whole html-page?

This question seems to be asked right but with no right answer. How to update file in browser cache after it is updated? Thanks.

Community
  • 1
  • 1
ntk
  • 319
  • 2
  • 9
  • It still reloads the whole page with Livereload. And if i turn it on and do as they say in your link, nothing happens (both if I update CSS or HTML files). – ntk Oct 03 '14 at 14:33

1 Answers1

0

You can do it only for css files, using grunt-browser-sync.

This plugins allows to reload only the css modified file.

Here is the documentation.

Regards.

Mario Araque
  • 4,566
  • 3
  • 13
  • 25