browsersync-reloader-webpack-plugin
v1.0.2
Published
Reload BrowserSync on Webpack compilation
Maintainers
Readme
browsersync-reloader-webpack-plugin
Description
Reload any instance of BrowserSync with your Webpack configuration after every compilation. It's also useful to reload Browsersync from another place... i.e. from gulp file when stylesheets change.
Usage
var BrowserSyncReloadPlugin = require('browsersync-reloader-webpack-plugin');
var BrowserSync = require('browser-sync');
var browserSync = BrowserSync.create();
//webpack config
{
//...
plugins: [
new BrowserSyncReloadPlugin({
browserSync: browserSync
})
]
}