statianzo / webpack-livereload-plugin

LiveReload during webpack --watch
ISC License
203 stars 51 forks source link

Requesting https server #20

Closed ramakay closed 8 years ago

ramakay commented 8 years ago

Looks like this might be achieved by creating a httpserver vs httpserver...thoughts?

statianzo commented 8 years ago

If you set key, cert, or pfx options, they'll get passed through to tiny-lr as options and it will serve https. You'll need to also leave appendScriptTag as false and manually add a script tag to your html:

<script src="https://localhost:port/livereload.js"></script>
ramakay commented 8 years ago

Thank you, will give it a try.