Jul 25, 2017 · 1 min read
const webpack = require('webpack');
const path = require('path');
module.exports = {
entry: {
app: ['webpack/hot/dev-server', './js/entry.js'],
},
output: {
path: path.join(__dirname, '/../public/built'),James, you need to add ‘path’ as shown above.
