32 lines
781 B
Svelte
32 lines
781 B
Svelte
<script>
|
|
import Modal from "svelte-simple-modal"
|
|
import { onMount } from "svelte"
|
|
import { Router, basepath } from "@sveltech/routify"
|
|
import { routes } from "@sveltech/routify/tmp/routes"
|
|
import { store, initialise } from "builderStore"
|
|
import AppNotification, {
|
|
showAppNotification,
|
|
} from "components/common/AppNotification.svelte"
|
|
|
|
function showErrorBanner() {
|
|
showAppNotification({
|
|
status: "danger",
|
|
message:
|
|
"Whoops! Looks like we're having trouble. Please refresh the page.",
|
|
})
|
|
}
|
|
|
|
onMount(() => {
|
|
window.addEventListener("error", showErrorBanner)
|
|
window.addEventListener("unhandledrejection", showErrorBanner)
|
|
})
|
|
|
|
$basepath = "/_builder"
|
|
</script>
|
|
|
|
<AppNotification />
|
|
|
|
<Modal>
|
|
<Router {routes} />
|
|
</Modal>
|