BrowserSync / browser-sync

Keep multiple browsers & devices in sync when building websites. https://browsersync.io
https://discord.gg/2d2xUThp
Apache License 2.0
12.17k stars 754 forks source link

Firefox doesn't sync and admin panel not work #1051

Open Mitiryl opened 8 years ago

Mitiryl commented 8 years ago

Issue details

Hi,

We are using BrowserSync in proxy mode and with chrome all is working fine. But on firefox we are not able to sync the page with the other browsers and also the admin panel seems not working (the lateral menu is shown but there is no content on the right part of the page, only white space).

Thank you in advance!

Please specify which version of Browsersync, node and npm you're running

gulp.task('browser-sync', function () {
    var browserSync = require('browser-sync').create();
    browserSync.init({
        proxy: {
            target: "https://localhost:8443",
            ws: true
        },
        browser: ["google-chrome","firefox"],
        reloadOnRestart: false
    });
    gulp.watch("./webapp/styles/**/*.scss", ['sass']);
    gulp.watch("./webapp/**/*.html").on('change', browserSync.reload);

 });
JosephScript commented 6 years ago

I confirmed this is the same on OS X with FF Developer Edition.