From 3e54ee720cf79c5c5ed91e0c62f8718e21753807 Mon Sep 17 00:00:00 2001 From: Tony Sullivan Date: Wed, 20 Apr 2022 15:49:06 +0200 Subject: [PATCH] fix: config.site was being ignored since it's a URL not a string --- packages/astro/src/core/build/generate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/core/build/generate.ts b/packages/astro/src/core/build/generate.ts index c85d758abe..4bac5ae29c 100644 --- a/packages/astro/src/core/build/generate.ts +++ b/packages/astro/src/core/build/generate.ts @@ -179,7 +179,7 @@ async function generatePath( // If a base path was provided, append it to the site URL. This ensures that // all injected scripts and links are referenced relative to the site and subpath. const site = astroConfig.base && astroConfig.base !== './' - ? joinPaths(astroConfig.site || 'http://localhost/', astroConfig.base) + ? joinPaths(astroConfig.site?.toString() || 'http://localhost/', astroConfig.base) : astroConfig.site; const links = createLinkStylesheetElementSet(linkIds.reverse(), site); const scripts = createModuleScriptElementWithSrcSet(hoistedId ? [hoistedId] : [], site);