import { createApp } from 'vue'import App from './App.vue'import { HumanBehaviorTracker } from 'humanbehavior-js'// Initialize the tracker once globallyconst tracker = HumanBehaviorTracker.init('your-api-key-here')// Create and mount the appconst app = createApp(App)app.mount('#app')