mirror of
https://github.com/strapi/strapi.git
synced 2025-09-18 04:47:27 +00:00
17 lines
273 B
TypeScript
17 lines
273 B
TypeScript
![]() |
import type { NodeOptions } from '@sentry/node';
|
||
|
|
||
|
export interface Config {
|
||
|
dsn: string | null;
|
||
|
sendMetadata: boolean;
|
||
|
init: NodeOptions;
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
default: {
|
||
|
dsn: null,
|
||
|
sendMetadata: true,
|
||
|
init: {},
|
||
|
} satisfies Config,
|
||
|
validator() {},
|
||
|
};
|