From 9403844cda85361c45eb805611e6a429fd201c03 Mon Sep 17 00:00:00 2001 From: PKulkoRaccoonGang Date: Fri, 11 Aug 2023 13:57:32 +0300 Subject: [PATCH] fix: fixed Gatsby local build --- www/gatsby-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/gatsby-config.js b/www/gatsby-config.js index 4afa1afaca..b238759614 100644 --- a/www/gatsby-config.js +++ b/www/gatsby-config.js @@ -115,6 +115,6 @@ module.exports = { author: '@edx', }, // Match the location of the site on github pages if no path prefix is specified - pathPrefix: 'PATH_PREFIX' in process.env ? process.env.PATH_PREFIX : '/paragon', + pathPrefix: process.env.PATH_PREFIX || '', plugins, };