Browse Source

add true for log sql

main
anthony 5 years ago
parent
commit
2ce9e7ed2f
  1. 2
      src/config/config.service.ts

2
src/config/config.service.ts

@ -13,7 +13,7 @@ const schema = z.object({
LOG_SQL_REQUEST: z
.string()
.transform((value) => value === 'true')
.default('false'),
.default('true'),
PORT: z.string()
.transform(value => parseInt(value))
.default('3000'),

Loading…
Cancel
Save