From 59bcfbd248f09ae72053fb0472fa0e17a25f8fb8 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Thu, 18 Dec 2025 21:22:06 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20corriger=20le=20r=C3=A9pertoire=20de=20s?= =?UTF-8?q?ortie=20de=20construction=20des=20pages=20dans=20la=20configura?= =?UTF-8?q?tion=20de=20wrangler?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- worker-configuration.d.ts | 14 ++++---------- wrangler.jsonc | 2 +- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index dc85ea9..f9ee652 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ -// Generated by Wrangler by running `wrangler types` (hash: 889e96b9a6e7cd90ad202f69774b6cc7) -// Runtime types generated with workerd@1.20251217.0 2025-12-13 nodejs_compat +// Generated by Wrangler by running `wrangler types` (hash: 9ebceff030e512b05e46edbb174bea44) +// Runtime types generated with workerd@1.20251217.0 2025-12-13 declare namespace Cloudflare { interface Env { CACHE: KVNamespace; @@ -12,12 +12,6 @@ declare namespace Cloudflare { } } interface Env extends Cloudflare.Env {} -type StringifyValues> = { - [Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string; -}; -declare namespace NodeJS { - interface ProcessEnv extends StringifyValues> {} -} // Begin runtime types /*! ***************************************************************************** @@ -8599,7 +8593,7 @@ type AIGatewayHeaders = { [key: string]: string | number | boolean | object; }; type AIGatewayUniversalRequest = { - provider: AIGatewayProviders | string; + provider: AIGatewayProviders | string; // eslint-disable-line endpoint: string; headers: Partial; query: unknown; @@ -8615,7 +8609,7 @@ declare abstract class AiGateway { gateway?: UniversalGatewayOptions; extraHeaders?: object; }): Promise; - getUrl(provider?: AIGatewayProviders | string): Promise; + getUrl(provider?: AIGatewayProviders | string): Promise; // eslint-disable-line } interface AutoRAGInternalError extends Error { } diff --git a/wrangler.jsonc b/wrangler.jsonc index a1e6acf..5692a14 100644 --- a/wrangler.jsonc +++ b/wrangler.jsonc @@ -2,7 +2,7 @@ "$schema": "node_modules/wrangler/config-schema.json", "name": "artsite", "compatibility_date": "2025-12-13", - "pages_build_output_dir": ".output/public", + "pages_build_output_dir": "dist/public", "d1_databases": [ { "binding": "DB",