interface ReflectionServerOptions {
    bodyLimit?: string;
    configuredEnvs?: string[];
    port?: number;
}

Properties

bodyLimit?: string

Body size limit for the server. Defaults to 30mb.

configuredEnvs?: string[]

Configured environments. Defaults to dev.

port?: number

Port to run the server on. Actual port may be different if chosen port is occupied. Defaults to 3100.