From 2766f326e82aee587eca19bd5a9802abdae3e644 Mon Sep 17 00:00:00 2001 From: Tony Sullivan Date: Wed, 20 Apr 2022 14:30:24 +0200 Subject: [PATCH] `astro build` should include the `base` provided in astro config --- packages/astro/src/core/build/generate.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/astro/src/core/build/generate.ts b/packages/astro/src/core/build/generate.ts index d68f8faf30..dd8df86a51 100644 --- a/packages/astro/src/core/build/generate.ts +++ b/packages/astro/src/core/build/generate.ts @@ -176,12 +176,7 @@ async function generatePath( debug('build', `Generating: ${pathname}`); - // 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 !== '/' - ? joinPaths(astroConfig.site?.toString() || 'http://localhost/', astroConfig.base) - : astroConfig.site; + const site = joinPaths(astroConfig.site, astroConfig.base); const links = createLinkStylesheetElementSet(linkIds.reverse(), site); const scripts = createModuleScriptElementWithSrcSet(hoistedId ? [hoistedId] : [], site);