From 49934fa565e4d0455f4cca509a3f62a3f81cdcf0 Mon Sep 17 00:00:00 2001 From: Tony Sullivan Date: Wed, 20 Apr 2022 16:47:49 +0200 Subject: [PATCH] fix: dev redirect needs to ignore base default of ./ --- packages/astro/src/vite-plugin-astro-server/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/astro/src/vite-plugin-astro-server/index.ts b/packages/astro/src/vite-plugin-astro-server/index.ts index 2c457eb175..a665211716 100644 --- a/packages/astro/src/vite-plugin-astro-server/index.ts +++ b/packages/astro/src/vite-plugin-astro-server/index.ts @@ -112,7 +112,8 @@ async function handle404Response( html = subpathNotUsedTemplate(devRoot, pathname); } else { // HACK: redirect without the base path for assets in publicDir - if (config.base && !pathname.startsWith(config.base)) { + if (config.base && config.base !== './' && !pathname.startsWith(config.base)) { + console.log('REDIRECT::', pathname, config.base, pathname.replace(config.base, '')); const response = new Response(null, { status: 301, headers: {