mirror of
https://github.com/strapi/strapi.git
synced 2025-09-17 12:27:33 +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() {},
|
|
};
|