4

I am trying to run Gulp for open 2 servers both with livereload at the same time. Is it possible? My code: http://pastebin.com/B6GAuvWB

Unheilig
  • 15,690
  • 193
  • 65
  • 96

2 Answers2

0

I think you can:

Multiple-Server

But relating to your code, you are already starting two servers at the same time.

Beat
  • 4,202
  • 2
  • 29
  • 48
0

You would need 2 different ports for livereload https://github.com/vohof/gulp-livereload/blob/master/examples/custom-port.js

Phil C
  • 842
  • 6
  • 17
  • Not for the livereload servers. The default port for livereload is 35729. If you put this in your browser you will see what the livereload server is serving. http://localhost:35729/ – Phil C Oct 05 '15 at 07:17