1

I have browsersync on Ubuntu 16.04, I want to init it in the Chromium. I have this in my gulpfile:

browserSync.init({
  server:"./project",
  browser:"chromium"
});

When I starting browserSync I have this error: "Couldn't open browser (if you are using BrowserSync in a headless environment, you might want to set open option to false).

But if I delete this line: browser:"chromium" it starting perfectly with Firefox and works OK. So how I need to change: browser:"chromium" to start it in Chromium?

Belial
  • 668
  • 2
  • 8
  • 27

1 Answers1

1

Solution: browser:"chromium-browser"

Belial
  • 668
  • 2
  • 8
  • 27