From 631ffebe694a7e227a9a7de157392816f2ffb14e Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 5 Feb 2026 00:12:18 +0000 Subject: [PATCH] fix(ci): remove debug option from dotenv configuration --- playwright.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.js b/playwright.config.js index 5d0687ea..225576f9 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -9,7 +9,7 @@ import { dirname, join } from 'path'; * https://github.com/motdotla/dotenv */ import dotenv from 'dotenv'; -dotenv.config({ path: join(dirname(fileURLToPath(import.meta.url)), '.env'), debug: false }); +dotenv.config({ path: join(dirname(fileURLToPath(import.meta.url)), '.env') }); /** * Auth state storage path - shared across all browser projects