AppConfig

The `AppConfig` entity.

Definition

TypeScript
interface AppConfig {
  [x: string]: unknown;
  nodeVersion?: string | undefined;
  env?: Record<string, string> | undefined;
}

Fields

FieldTypeNotes
nodeVersionstring | undefinedoptional — Node.js version the app's build and runtime should use.
envRecord<string, string> | undefinedoptional — Non-secret environment variables exposed to the app.