You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2019. It is now read-only.
Honestly, I started with this just for fun without thinking in the maintenance and I'm really busy with other projects. However, not responding to any request is unrespectful. My apologies for that.
If somebody want to take the ownership of this project, let me know.
Before that, take in consideration that Webpack has evolved a lot and it has the ability to open a page without plugins. Maybe that's enough for your project.
Open Browser Webpack Plugin
Opens a new browser tab when Webpack loads. Very useful if you're lazy and don't want to force yourself to open a new tab when Webpack is ready to play!
Url to open when Webpack is ready. Needs to have the prefix https:// or https:// in order to open the browser.
delay
Type: Number
Default: 0
Optional
By default the browser is opened immediately, but this could be too early in some cases (eg. starting a nodeJS server).
The value is specified in milliseconds.
browser
Type: String
Optional
Browser to open. By default, it will try to open the browser set by default in your system.
ignoreErrors
Type: Boolean
Default: False
Optional
By default this plugin only opens the browser if there's no Webpack errors. Setting ignoreErrors to true will open a new tab no matter the compilation errors.
Change Log
0.0.5 - 2017-03-09
Fixes
Fix issue where the compilation never ends. (Thanks to @vkalinichev)
0.0.4 - 2017-02-19
Fixes
Fix issue where other Webpack callbacks were removed. (Thanks to @plemarquand)