From 7557cb9b3a6bc24a9753d184d582b91d95e48fef Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 11 May 2024 23:11:53 +0100 Subject: [PATCH] Update condidional for skipping wc homepage for self-hosted users --- astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 92d350f..4097853 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -68,7 +68,7 @@ console.log( const redirects = {}; // Skip the marketing homepage for self-hosted users -if (!isBossServer || isBossServer !== true) { +if (!isBossServer && isBossServer !== true) { redirects['/'] = '/check'; }