UNPKG

opn-browser-webpack-plugin

Version:

Opens the browser when Webpack is ready serving your files.

13 lines (12 loc) 299 B
var path = require('path'); var OpenBrowserPlugin = require('../index'); module.exports = { entry: path.resolve(__dirname, 'lib/entry.js'), output: { path: __dirname + "/bundle/", filename: "bundle.js" }, plugins: [ new OpenBrowserPlugin({ url: 'http://localhost:3000' }) ] };