coracle/src/main.js
2023-02-03 17:01:29 -06:00

17 lines
267 B
JavaScript

import 'src/app.css'
import Bugsnag from "@bugsnag/js"
Bugsnag.start({
apiKey: "2ea412feabfe14dc9849c6f0b4fa7003",
collectUserIp: false,
})
import App from 'src/App.svelte'
const app = new App({
target: document.getElementById('app')
})
export default app