58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
import { n as noop, e as escape_html } from "../../chunks/attributes.js";
|
|
import "clsx";
|
|
import { w as writable } from "../../chunks/exports.js";
|
|
import "@sveltejs/kit/internal/server";
|
|
import { g as getContext } from "../../chunks/root.js";
|
|
import "@sveltejs/kit/internal";
|
|
import "../../chunks/utils.js";
|
|
function create_updated_store() {
|
|
const { set, subscribe } = writable(false);
|
|
{
|
|
return {
|
|
subscribe,
|
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
check: async () => false
|
|
};
|
|
}
|
|
}
|
|
const is_legacy = noop.toString().includes("$$") || /function \w+\(\) \{\}/.test(noop.toString());
|
|
const placeholder_url = "a:";
|
|
if (is_legacy) {
|
|
({
|
|
data: {},
|
|
form: null,
|
|
error: null,
|
|
params: {},
|
|
route: { id: null },
|
|
state: {},
|
|
status: -1,
|
|
url: new URL(placeholder_url)
|
|
});
|
|
}
|
|
const stores = {
|
|
updated: /* @__PURE__ */ create_updated_store()
|
|
};
|
|
({
|
|
check: stores.updated.check
|
|
});
|
|
function context() {
|
|
return getContext("__request__");
|
|
}
|
|
const page$1 = {
|
|
get error() {
|
|
return context().page.error;
|
|
},
|
|
get status() {
|
|
return context().page.status;
|
|
}
|
|
};
|
|
const page = page$1;
|
|
function Error$1($$renderer, $$props) {
|
|
$$renderer.component(($$renderer2) => {
|
|
$$renderer2.push(`<h1>${escape_html(page.status)}</h1> <p>${escape_html(page.error?.message)}</p>`);
|
|
});
|
|
}
|
|
export {
|
|
Error$1 as default
|
|
};
|