Disable the built-in analytics events in AtlasKit components

These events are a huge performance hit especially for big projects utilizing a lot of AtlasKit components. Is there any way that they can be disabled?

2 Likes

You can import component *WithoutAnalytics. For example, import Button:

import {ButtonWithoutAnalytics as Button} from '@atlaskit/button/dist/cjs/components/Button';
2 Likes