Skip to main content
type BaseConfig = {
  projectId: string;
  useMock?: boolean;
  debugging?: boolean;
  basePath?: string;
  disableAnalytics?: boolean;
};
Base configuration for the core package.

Properties

PropertyTypeDescription
projectIdstringThe CDP Project ID.
useMock?booleanWhether to use the mock implementation.
debugging?booleanWhether to enable debugging.
basePath?stringThe base path for the API.
disableAnalytics?booleanWhether to disable analytics.