My webpack.config file looks like this
var path = require(\'path\'); var webpack = require(\'webpack\'); module.exports = { entry: { app: \'./ap
You probably need to set the public path- basically, you tell webpack where on your webserver it will find the built files, which for you seems to the the build folder.
{ output: { path: path.resolve(__dirname, 'build'), filename: '[name]-bundle.js', publicPath: '/build/', }, }