| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { n as noop, g as getContext, e as escape_html } from "../../chunks/index.js";
- import "clsx";
- import { w as writable } from "../../chunks/exports.js";
- import "@sveltejs/kit/internal/server";
- import "../../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
- };
|