We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 248f127 commit b9eca48Copy full SHA for b9eca48
webpack.example.config.js
@@ -3,6 +3,7 @@ const path = require("path");
3
const HtmlWebpackPlugin = require("html-webpack-plugin");
4
const ConcatPlugin = require("webpack-concat-plugin");
5
const OpenBrowserPlugin = require("open-browser-webpack-plugin");
6
+const SimpleProgressPlugin = require("webpack-simple-progress-plugin");
7
8
const concatPluginConfigGenerator = (name, files) => {
9
return {
@@ -46,6 +47,8 @@ module.exports = options => {
46
47
path.resolve(__dirname, "./node_modules/easeljs/lib/easeljs.js")
48
])),
49
50
+ new SimpleProgressPlugin(),
51
+
52
new OpenBrowserPlugin({ url: "http://0.0.0.0:8080/webpack-dev-server/" })
53
],
54
0 commit comments