2022-11-03 19:43:41 +01:00
|
|
|
export interface IConfigOptions {
|
|
|
|
|
posthog?: {
|
|
|
|
|
api_key: string;
|
2022-11-04 13:07:14 +01:00
|
|
|
api_host: string;
|
2022-11-03 19:43:41 +01:00
|
|
|
};
|
|
|
|
|
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",
|
|
|
|
|
},
|
|
|
|
|
};
|