/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-options-ed3217faf993-options-s0745-c0000.md
Options - hono-docs
Options Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt options Summary Options are specified in...
Options
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#options
Summary
Options are specified in the ToSSGOptions interface. ts export interface ToSSGOptions { dir?: string concurrency?: number extensionMap?: Record plugins?: SSGPlugin[] } - dir is the output destination for Static files. The defaul...
Content
Options are specified in the ToSSGOptions interface.
export interface ToSSGOptions {
dir?: string
concurrency?: number
extensionMap?: Record<string, string>
plugins?: SSGPlugin[]
}diris the output destination for Static files. The default value is./static.concurrencyis the concurrent number of files to be generated at the same time. The default value is2.extensionMapis a map containing theContent-Typeas a key and the string of the extension as a value. This is used to determine the file extension of the output file.pluginsis an array of SSG plugins that extend the functionality of the static site generation process.