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 64a5689 commit 110fa90Copy full SHA for 110fa90
webpack.example.config.js
@@ -2,6 +2,7 @@ const webpack = require("webpack");
2
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
7
const concatPluginConfigGenerator = (name, files) => {
8
return {
@@ -44,6 +45,8 @@ module.exports = options => {
44
45
new ConcatPlugin(concatPluginConfigGenerator("createjs", [
46
path.resolve(__dirname, "./node_modules/easeljs/lib/easeljs.js")
47
])),
48
+
49
+ new OpenBrowserPlugin({ url: "http://localhost:8080" })
50
],
51
52
resolve: {
0 commit comments