Skip to main content
Module

x/aleph/server/mod.ts>ServerOptions

The Full-stack Framework in Deno.
Go to Latest
type alias ServerOptions
import { type ServerOptions } from "https://deno.land/x/aleph@1.0.0-beta.15/server/mod.ts";

The options for the Aleph.js server.

definition: Omit<ServeInit, "onError"> & { certFile?: string; keyFile?: string; logLevel?: LevelName; fetch?: (request: Request, context: Context) => Promise<Response> | Response; onError?: ErrorHandler; } & AlephConfig