mirror of
https://github.com/element-hq/element-call.git
synced 2026-04-27 12:55:43 +00:00
72503d0335
Co-authored-by: Timo K <timok@element.io> Co-authored-by: Šimon Brandner <simon.bra.ag@gmail.com>
21 lines
381 B
TypeScript
21 lines
381 B
TypeScript
export interface IConfigOptions {
|
|
posthog?: {
|
|
api_key: string;
|
|
api_host: string;
|
|
};
|
|
sentry?: {
|
|
DSN: string;
|
|
environment: string;
|
|
};
|
|
rageshake?: {
|
|
submit_url: string;
|
|
};
|
|
}
|
|
|
|
export const DEFAULT_CONFIG: IConfigOptions = {
|
|
sentry: { DSN: "", environment: "production" },
|
|
rageshake: {
|
|
submit_url: "https://element.io/bugreports/submit",
|
|
},
|
|
};
|