Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | export interface AppConfig {
/**
* A URL to point app requests to. By default this can be
* omitted as a cloudfront proxy will be used.
*/
apiUrl?: string;
/**
* Reflects if the app will collect usage data
* @default false
*/
hasAnalytics?: boolean;
/**
* Defines content or pages which will be disabled. Disabled routes will 404
*/
disableContent?: {
faq?: boolean;
};
}
|