/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-using-adapters-for--085ed4aafca7-using-adapters-for-deno-and-bun-s0744-c0000.md
Using adapters for Deno and Bun - hono-docs
Using adapters for Deno and Bun Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt using adapters fo...
Using adapters for Deno and Bun
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#using-adapters-for-deno-and-bun
Summary
If you want to use SSG on Deno or Bun, a toSSG function is provided for each file system. For Deno: ts import { toSSG } from 'hono/deno' toSSG(app) // The second argument is an option typed `ToSSGOptions`. For Bun: ```ts import...
Content
If you want to use SSG on Deno or Bun, a toSSG function is provided for each file system.
For Deno:
import { toSSG } from 'hono/deno'
toSSG(app) // The second argument is an option typed `ToSSGOptions`.For Bun:
import { toSSG } from 'hono/bun'
toSSG(app) // The second argument is an option typed `ToSSGOptions`.