From 19ef1961507f0cfb40336be1b9a47b030dd10856 Mon Sep 17 00:00:00 2001 From: Min Idzelis Date: Sun, 15 Feb 2026 23:25:18 -0500 Subject: [PATCH] chore: quiet down dotenv (#26245) --- e2e/playwright.config.ts | 2 +- web/svelte.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index 032e6affbf..6dd8c10d25 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -3,7 +3,7 @@ import dotenv from 'dotenv'; import { cpus } from 'node:os'; import { resolve } from 'node:path'; -dotenv.config({ path: resolve(import.meta.dirname, '.env') }); +dotenv.config({ quiet: true, path: resolve(import.meta.dirname, '.env') }); export const playwrightHost = process.env.PLAYWRIGHT_HOST ?? '127.0.0.1'; export const playwrightDbHost = process.env.PLAYWRIGHT_DB_HOST ?? '127.0.0.1'; diff --git a/web/svelte.config.js b/web/svelte.config.js index 5daf958986..e2a5fb5c46 100644 --- a/web/svelte.config.js +++ b/web/svelte.config.js @@ -2,7 +2,7 @@ import adapter from '@sveltejs/adapter-static'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; import dotenv from 'dotenv'; -dotenv.config(); +dotenv.config({ quiet: true }); process.env.PUBLIC_IMMICH_BUY_HOST = process.env.PUBLIC_IMMICH_BUY_HOST || 'https://buy.immich.app'; process.env.PUBLIC_IMMICH_PAY_HOST = process.env.PUBLIC_IMMICH_PAY_HOST || 'https://pay.futo.org';