From e9bf0beaa29e9211982d98d87644e3a51264d75c Mon Sep 17 00:00:00 2001 From: Nathan Knowler Date: Wed, 7 Nov 2018 16:19:19 -0700 Subject: [PATCH] Fix SAGE_DIST_PATH example path Needs the trailing slash. --- resources/assets/build/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/build/config.js b/resources/assets/build/config.js index 60b8098..b2d2853 100644 --- a/resources/assets/build/config.js +++ b/resources/assets/build/config.js @@ -44,7 +44,7 @@ if (process.env.NODE_ENV === undefined) { * If your publicPath differs between environments, but you know it at compile time, * then set SAGE_DIST_PATH as an environment variable before compiling. * Example: - * SAGE_DIST_PATH=/wp-content/themes/sage/dist yarn build:production + * SAGE_DIST_PATH=/wp-content/themes/sage/dist/ yarn build:production */ if (process.env.SAGE_DIST_PATH) { module.exports.publicPath = process.env.SAGE_DIST_PATH;