For the complete documentation index, see llms.txt. This page is also available as Markdown.

Custom domains for events

In some hybrid apps (Electron, Cordova, etc.), the location.host value used by the Web SDK is not defined. This can cause the following issue in analytics data and events:

  • Your organization has a lot of page views with no consent rate.

A custom domain can be set as part of the didomiConfig object to ensure that some domain is associated with API events for those applications.

You can add a customDomain property to the app object in the configuration:

window.didomiConfig = {
  app: {
    customDomain: "custom.app.domain",
  },
};

This configuration option is also available in the Didomi Console as part of the Custom JSON field in the Customization tab.

Last updated