From 03b34448e2fbf4be309c1bc244238d6670fee7d9 Mon Sep 17 00:00:00 2001 From: David Kaltschmidt Date: Tue, 29 Nov 2016 16:56:03 +0100 Subject: [PATCH] Empty publicpath needed for relative paths of scope Fixes #2037 --- client/webpack.production.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/webpack.production.config.js b/client/webpack.production.config.js index c23cc7b03..ae790879d 100644 --- a/client/webpack.production.config.js +++ b/client/webpack.production.config.js @@ -11,7 +11,7 @@ const GLOBALS = { }; let OUTPUT_PATH = 'build/'; -let PUBLIC_PATH = '/'; +let PUBLIC_PATH = ''; if (process.env.EXTERNAL) { OUTPUT_PATH = 'build-external/';