I have setup browser-sync gulp plugin in my rails project and I had a white page issue when using turbolinks navigation. If I look at the source code, the page is properly sent to the browser but is not displayed.
Here is my browser-sync gulp code:
gulp.task 'init', ->
browserSync.init
proxy: '127.0.0.1:3000' # Rails server
port: 3001
open: false
notify: false
ui: false
I have setup browser-sync gulp plugin in my rails project and I had a white page issue when using turbolinks navigation. If I look at the source code, the page is properly sent to the browser but is not displayed.
Here is my browser-sync gulp code: