From a6bb83b4f8b1e196009ea979c487692346de0c14 Mon Sep 17 00:00:00 2001 From: Art Lowel Date: Thu, 6 Jun 2019 09:28:34 +0200 Subject: [PATCH] Revert "make the relativethemePath relative to the project root instead of src root" This reverts commit c6f18674 --- webpack/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack/helpers.js b/webpack/helpers.js index c4fcebe152..9a77ebbd0d 100644 --- a/webpack/helpers.js +++ b/webpack/helpers.js @@ -58,7 +58,7 @@ else { themePath = srcPath; } -const relativeThemePath = path.relative(projectRoot('./'), themePath); +const relativeThemePath = path.relative(srcPath, themePath); const globalCSSImports = (env) => { return [ buildRoot('styles/_variables.scss', env),