AppConfig
The `AppConfig` entity.
Definition
TypeScript
interface AppConfig {
[x: string]: unknown;
nodeVersion?: string | undefined;
env?: Record<string, string> | undefined;
}Fields
| Field | Type | Notes |
|---|---|---|
nodeVersion | string | undefined | optional — Node.js version the app's build and runtime should use. |
env | Record<string, string> | undefined | optional — Non-secret environment variables exposed to the app. |