Va1 / browser-sync-webpack-plugin

Easily use BrowserSync in your Webpack project.
MIT License
369 stars 40 forks source link

Option to hide snippet info and access url #84

Closed divpusher closed 4 years ago

divpusher commented 4 years ago

Hello!

I'd like an option that hides the snippet info and access url to keep the console clean. :nerd_face:

divpusher commented 4 years ago

Oops! I realized that you can pass BrowserSync options in the plugin's options:

plugins: [     
      new BrowserSyncPlugin({
        ui: false,
        logLevel: 'silent'
      })
    ]

Sorry! :)