From 19919e53b0c0730f0b5216687092c896649f0798 Mon Sep 17 00:00:00 2001 From: Erich Behrens Date: Tue, 12 Jun 2018 16:37:15 +0200 Subject: [PATCH] Fix publicPath for dev build --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index e5a409f1c..587421ff4 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -45,7 +45,7 @@ module.exports = function makeWebpackConfig() { // Output path from the view of the page // Uses webpack-dev-server in development - publicPath: isProd ? '/' : 'http://0.0.0.0:8080/', + publicPath: '/', // Filename for entry points // Only adds hash in build mode