From 5fb3b0333d37b99f649d2b33c445defeffd6a03f Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sat, 27 Sep 2025 18:10:46 -0700 Subject: [PATCH] Fragment too --- app/src/utils.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/utils.tsx b/app/src/utils.tsx index 276e6c7..5af1c35 100644 --- a/app/src/utils.tsx +++ b/app/src/utils.tsx @@ -83,6 +83,7 @@ export async function transpile(path: string): Promise { const code = await Bun.file(path).text() cached = transpiler.transformSync(code) cached = cached.replaceAll(/\bjsxDEV_?\w*\(/g, "jsx(") + cached = cached.replaceAll(/\bFragment_?\w*,/g, "Fragment,") transpileCache[key] = cached }