From 148cca451b3f5ef5cdc573637e93fc0f2415df83 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 20 Nov 2023 13:22:39 +0300 Subject: [PATCH] apps/web: env.js make USE_DEV_COLORS optional --- apps/web/config/schema/env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/config/schema/env.js b/apps/web/config/schema/env.js index 2966a3b..9c1bd8a 100644 --- a/apps/web/config/schema/env.js +++ b/apps/web/config/schema/env.js @@ -2,7 +2,7 @@ const { z } = require('zod'); const envSchema = z.object({ URL_IUS_DIRECT: z.string(), - USE_DEV_COLORS: z.string(), + USE_DEV_COLORS: z.string().optional(), }); module.exports = envSchema;