mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
import App from "./App.svelte";
|
|
|
|
const app = new App({
|
|
target: document.body
|
|
});
|
|
|
|
window.onerror = function(e) {
|
|
window.alert(`An error occurred: ${e}`);
|
|
};
|
|
window.onunhandledrejection = function(e) {
|
|
window.alert(`An error occurred: ${e.reason}`);
|
|
};
|
|
|
|
export default app;
|