From 28c4caf60d2e4ceee55b98ae3ba200076a9e43eb Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 17 Dec 2025 10:52:55 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20mettre=20=C3=A0=20jour=20le=20nom=20de?= =?UTF-8?q?=20la=20variable=20d'environnement=20NUXT=5FARTAPI=20en=20NUXT?= =?UTF-8?q?=5FAPI=5FURL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- worker-configuration.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index 853434a..68cff7a 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -1,5 +1,5 @@ /* eslint-disable */ -// Generated by Wrangler by running `wrangler types` (hash: 57f22bacacc3bbcbd55db3166120e80f) +// Generated by Wrangler by running `wrangler types` (hash: 62d6edfcbe10d837218cb1a518a9ad0a) // Runtime types generated with workerd@1.20251213.0 2025-12-13 nodejs_compat declare namespace Cloudflare { interface GlobalProps { @@ -8,7 +8,7 @@ declare namespace Cloudflare { interface Env { CACHE: KVNamespace; NUXT_PUBLIC_I18N_BASE_URL: string; - NUXT_ARTAPI: string; + NUXT_API_URL: string; STUDIO_GITHUB_CLIENT_ID: string; STUDIO_GITHUB_CLIENT_SECRET: string; DB: D1Database; @@ -20,7 +20,7 @@ type StringifyValues> = { [Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string; }; declare namespace NodeJS { - interface ProcessEnv extends StringifyValues> {} + interface ProcessEnv extends StringifyValues> {} } // Begin runtime types