coracle/src/main.js

17 lines
267 B
JavaScript
Raw Normal View History

2023-01-16 22:54:03 +00:00
import 'src/app.css'
import Bugsnag from "@bugsnag/js"
2023-01-21 19:15:10 +00:00
2023-01-24 04:01:09 +00:00
Bugsnag.start({
apiKey: "2ea412feabfe14dc9849c6f0b4fa7003",
collectUserIp: false,
})
2023-01-21 19:15:10 +00:00
import App from 'src/App.svelte'
2022-11-23 01:28:33 +00:00
const app = new App({
2022-11-23 01:28:33 +00:00
target: document.getElementById('app')
})
export default app