Skip to content

Commit

Permalink
fix: change default value to false
Browse files Browse the repository at this point in the history
  • Loading branch information
aweiss-dev committed Oct 16, 2024
1 parent 7a89548 commit e552dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/config/server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export function generateConfig(params: ConfigGeneratorParams, env: Env) {
DISALLOW: readFile(ROBOTS_DISALLOW_FILE, 'User-agent: *\r\nDisallow: /'),
},
COUNTLY_API_KEY: env.COUNTLY_API_KEY || '',
COUNTLY_ENABLE_LOGGING: env.COUNTLY_ENABLE_LOGGING != 'false',
COUNTLY_ENABLE_LOGGING: env.COUNTLY_ENABLE_LOGGING === 'true',
COUNTLY_NONCE: COUNTLY_NONCE.value,
SSL_CERTIFICATE_KEY_PATH:
env.SSL_CERTIFICATE_KEY_PATH || path.join(__dirname, '../certificate/development-key.pem'),
Expand Down

0 comments on commit e552dbf

Please sign in to comment.