From cd1128c89663df73d3d6c1a40c54edb6966bffce Mon Sep 17 00:00:00 2001 From: velzie Date: Sat, 12 Oct 2024 15:43:40 -0400 Subject: [PATCH] fix recursive import --- src/shared/rewriters/html.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/rewriters/html.ts b/src/shared/rewriters/html.ts index d0b4f16..5de72fa 100644 --- a/src/shared/rewriters/html.ts +++ b/src/shared/rewriters/html.ts @@ -5,7 +5,7 @@ import { URLMeta, rewriteUrl } from "./url"; import { rewriteCss } from "./css"; import { rewriteJs } from "./js"; import { CookieStore } from "../cookie"; -import { unrewriteBlob } from "../../shared"; +import { unrewriteBlob } from "../../shared/rewriters/url"; export function rewriteHtml( html: string,