Simon Egersand
2018-02-01 80582080ed523fcb9f85300438e066b76a008a4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var path = require('path');
 
module.exports = {
    entry: [
        'webpack/hot/dev-server',
        'webpack-dev-server/client?http://localhost:8080',
        path.resolve(__dirname, 'example.js')
    ],
 
    output: {
        path: path.resolve(__dirname, '.'),
        filename: 'bundle.js'
    }
};