open-browser-webpack-plugin
open-browser-webpack-plugin copied to clipboard
Why open browser very slowly?
hi, i use the plugin as this:
var OpenBrowserPlugin = require('open-browser-webpack-plugin')
…
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
}),
new OpenBrowserPlugin()
],
but when i run it, webpack-dev-server --inline --hot --quiet
, it open the browser with nearly 10s delay.
my environment: node v0.12.7 npm 2.11.3 webpack 1.12.11
Hello! can you please check without --quiet option and see how much time your webpack-dev-server is taking to start? The browser is opened only when Webpack dev server is ready. Thanks.