aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-landing/build.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-landing/build.tsx')
-rw-r--r--packages/bun-landing/build.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/bun-landing/build.tsx b/packages/bun-landing/build.tsx
index 2be819a96..732700d81 100644
--- a/packages/bun-landing/build.tsx
+++ b/packages/bun-landing/build.tsx
@@ -6,7 +6,9 @@ import liveReload from "bun-livereload";
import { join } from "path";
const { default: Page } = await import("./page.tsx");
-const build = await new Response(await renderToReadableStream(<Page />)).text();
+const build = await new Response(
+ await renderToReadableStream(<Page inlineCSS />)
+).text();
await Bun.write(import.meta.dir + "/public/index.html", build);
await Bun.write(