coracle/src/main.js

17 lines
340 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
Bugsnag.start({apiKey: "2ea412feabfe14dc9849c6f0b4fa7003"})
2023-01-16 22:54:03 +00:00
import App from 'src/App.svelte'
2022-11-23 01:28:33 +00:00
2023-01-21 19:15:10 +00:00
// Annoying global always fails silently. TODO: figure out an eslint rule instead
2022-12-01 18:39:53 +00:00
window.find = null
2022-11-23 01:28:33 +00:00
const app = new App({
target: document.getElementById('app')
})
export default app