Closed
Description
Since elixir version 5.1 we have the browserSync()
task by default, that it's a replacement for the livereload
plugin in this starter, the most awesome thing that livereload
does it's the soft CSS reload
but that seems broken now because of the use of the task versions()
and it brokes every single time you made a save too fast for example you modify a typo in 2 files and you save them almost instantly it will brake because it's lock, this doesn't happens with browserSync()
the only tiny problem it's that in order to browserSync()
to work we have to initialize artisan serve
like: artisan serve --host=0.0.0.0
and the task would look like this: .browserSync({ proxy: 'localhost:8000' })