Skip to content

Commit

Permalink
fix strict bool expresion
Browse files Browse the repository at this point in the history
  • Loading branch information
alvaromagu committed Oct 11, 2023
1 parent 56db160 commit 6d1dd67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pruebas/02-bazar-universal/aiv4ro/src/constants/env.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const vercelUrl = process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : null
const vercelUrl = process.env.VERCEL_URL != null ? `https://${process.env.VERCEL_URL}` : null
export const hostUrl = vercelUrl ?? 'http://localhost:3000'

0 comments on commit 6d1dd67

Please sign in to comment.