ExpressBackendOptionsType
ExpressBackendOptionsType =
object
Defined in: src/http/backend/ExpressBackendOptions.ts:22
Plain options-object shape accepted by an ExpressBackend.
Properties
Section titled “Properties”
readonlyoptionalapp?:ExpressAppLike
Defined in: src/http/backend/ExpressBackendOptions.ts:28
Bring-your-own app — useful when you already attach custom middleware
(CORS, sessions, metrics, …) outside the DSL. When omitted, a fresh
Express app is created via the installed express package.
maxBodyBytes?
Section titled “maxBodyBytes?”
readonlyoptionalmaxBodyBytes?:number
Defined in: src/http/backend/ExpressBackendOptions.ts:30
Maximum allowed body size in bytes (default: 10 MiB). Exceeding it returns 413.
