1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

chore: use undefined instead of null

This commit is contained in:
ivaosthu 2019-05-22 08:56:30 +02:00 committed by Ivar Conradi Østhus
parent 484b10029d
commit 70911e4013

View File

@ -10,7 +10,7 @@ const DEFAULT_OPTIONS = {
databaseUrl:
process.env.DATABASE_URL || process.env.DATABASE_HOST
? defaultDatabaseUrl()
: null,
: undefined,
databaseSchema: 'public',
port: process.env.HTTP_PORT || process.env.PORT || 4242,
host: process.env.HTTP_HOST,