File tree Expand file tree Collapse file tree 2 files changed +4
-13
lines changed
Expand file tree Collapse file tree 2 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 11import { BaseTracker } from "./core/tracker" ;
22import type { TrackerOptions } from "./core/types" ;
33import { generateUUIDv4 , getTrackerConfig , isOptedOut } from "./core/utils" ;
4- import {
5- initErrorTracking ,
6- initInteractionTracking ,
7- initScrollDepthTracking ,
8- initWebVitalsTracking ,
9- } from "./plugins" ;
4+ import { initErrorTracking } from "./plugins/errors" ;
5+ import { initInteractionTracking } from "./plugins/interactions" ;
6+ import { initScrollDepthTracking } from "./plugins/scroll-depth" ;
7+ import { initWebVitalsTracking } from "./plugins/vitals" ;
108
119export class Databuddy extends BaseTracker {
1210 constructor ( options : TrackerOptions ) {
@@ -20,7 +18,6 @@ export class Databuddy extends BaseTracker {
2018 initErrorTracking ( this ) ;
2119 }
2220
23- // Initialize standard tracking
2421 if ( ! this . isServer ( ) ) {
2522 if ( this . options . trackScreenViews ) {
2623 this . trackScreenViews ( ) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments