diff --git a/astro.config.mjs b/astro.config.mjs index 72ac4ec..1790e63 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -20,7 +20,7 @@ const unwrapEnvVar = (varName, fallbackValue) => { } // Determine the deploy target (vercel, netlify, cloudflare, node) -const deployTarget = unwrapEnvVar('PLATFORM', 'node'); +const deployTarget = unwrapEnvVar('PLATFORM', 'node').toLowerCase(); // Determine the output mode (server, hybrid or static) const output = unwrapEnvVar('OUTPUT', 'hybrid');