# disable

Learn how to disable automatic event tracking.

This method disables automatic event tracking.

> **Good to know**
>
> You can still [manually track events](track) with auto-tracking disabled.

## Signature

This method has the following signature:

```ts
tracker.disable(): void
```

## Example

Here is a basic example of how to use this method:

```ts
import croct from '@croct/plug';

croct.tracker.disable();
```
