UNPKG

299 BJavaScriptView Raw
1var path = require('path');
2var OpenBrowserPlugin = require('../index');
3
4module.exports = {
5 entry: path.resolve(__dirname, 'lib/entry.js'),
6 output: {
7 path: __dirname + "/bundle/",
8 filename: "bundle.js"
9 },
10 plugins: [
11 new OpenBrowserPlugin({ url: 'http://localhost:3000' })
12 ]
13};
\No newline at end of file