From 11b802fbfc356d830dca852f02f53d0a99ee4286 Mon Sep 17 00:00:00 2001 From: Marcos Candeia Date: Fri, 19 Jul 2024 17:49:43 -0300 Subject: [PATCH] Remove proxy client to allow host header Signed-off-by: Marcos Candeia --- client.ts | 3 --- deno.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/client.ts b/client.ts index 3492f27..14882a7 100644 --- a/client.ts +++ b/client.ts @@ -46,9 +46,6 @@ export const connectMainThread = async ( const client = typeof Deno.createHttpClient === "function" ? Deno.createHttpClient({ allowHost: true, - proxy: { - url: opts.localAddr, - }, }) : undefined; diff --git a/deno.json b/deno.json index 2c21401..d2994c9 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@deco/warp", - "version": "0.2.8", + "version": "0.3.0", "exports": "./mod.ts", "tasks": { "check": "deno fmt && deno lint && deno check mod.ts"