We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sandboxId
agentName
app-config.ts
1 parent 3568891 commit 927ddf7Copy full SHA for 927ddf7
app-config.ts
@@ -14,6 +14,7 @@ export interface AppConfig {
14
logoDark?: string;
15
accentDark?: string;
16
17
+ // for LiveKit Cloud Sandbox
18
sandboxId?: string;
19
agentName?: string;
20
}
@@ -33,4 +34,9 @@ export const APP_CONFIG_DEFAULTS: AppConfig = {
33
34
logoDark: '/lk-logo-dark.svg',
35
accentDark: '#1fd5f9',
36
startButtonText: 'Start call',
37
+
38
39
+ // these must be defined to satisfy `getAppConfig` in `lib/utils.ts`
40
+ sandboxId: undefined as string | undefined,
41
+ agentName: undefined as string | undefined,
42
};
0 commit comments