import App from './App.svelte';import { HumanBehaviorTracker } from 'humanbehavior-js';// Initialize the tracker once globallyconst tracker = HumanBehaviorTracker.init('your-api-key-here');const app = new App({ target: document.body});export default app;