Skip to content

Waku

Source: src/Fly/Website/Waku.ts

Deploy a Waku application to Fly: the RSC server on a Machine, static assets (SSG pages included) baked into the image. Prerendered pages are served extensionless (/about).

Basic Waku App

const site = yield* Fly.Website.Waku("Web", {
rootDir: "./app",
});

Custom Domain

const site = yield* Fly.Website.Waku("Web", {
rootDir: "./app",
domain: "app.example.com",
});