import { createApp } from 'vue';
import App from './App.vue';
import { BugByBug } from '@bugbybug/vue';
const app = createApp(App);
app.use(BugByBug, {
apiKey: 'YOUR_PROJECT_API_KEY', // Starts with bbb_
environment: 'production',
trackProps: false // Optional: set to true to include component props in error reports
});
app.mount('#app');