Gulp: How to implement cookies without Chrome livereload module?

It looks like gulp-livereload requires a Chrome plugin to upload to Google to work.

Is there a way to implement a download function that does not require any browser plugin and will work in all browsers?

Any examples would be appreciated.

+7
gulp gulp-livereload
source share
1 answer

How I missed it.

You should add a livereload script to your index.html and change the port you are currently using.

 <script src="http://localhost:35729/livereload.js?snipver=1"></script> 

You can only add this to the development version, so I think you should take a look at gulp-inject to get this behavior.

+12
source share

All Articles