mirror of
https://codeberg.org/alicia/web-check.git
synced 2026-03-14 14:45:48 +01:00
feat: Deploy target to lowercase
This commit is contained in:
parent
e529a2e229
commit
8c17303179
1 changed files with 1 additions and 1 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue