mirror of
https://github.com/SoPat712/A2ZSoftware.git
synced 2025-08-21 18:28:46 -04:00
all
This commit is contained in:
63
.svelte-kit/output/server/entries/fallbacks/error.svelte.js
Normal file
63
.svelte-kit/output/server/entries/fallbacks/error.svelte.js
Normal file
@@ -0,0 +1,63 @@
|
||||
import { g as getContext, e as escape_html, c as pop, p as push } from "../../chunks/index.js";
|
||||
import "clsx";
|
||||
import { n as noop } from "../../chunks/equality.js";
|
||||
import { w as writable } from "../../chunks/exports.js";
|
||||
const SNAPSHOT_KEY = "sveltekit:snapshot";
|
||||
const SCROLL_KEY = "sveltekit:scroll";
|
||||
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());
|
||||
if (is_legacy) {
|
||||
({
|
||||
data: {},
|
||||
form: null,
|
||||
error: null,
|
||||
params: {},
|
||||
route: { id: null },
|
||||
state: {},
|
||||
status: -1,
|
||||
url: new URL("https://example.com")
|
||||
});
|
||||
}
|
||||
function get(key, parse = JSON.parse) {
|
||||
try {
|
||||
return parse(sessionStorage[key]);
|
||||
} catch {
|
||||
}
|
||||
}
|
||||
get(SCROLL_KEY) ?? {};
|
||||
get(SNAPSHOT_KEY) ?? {};
|
||||
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($$payload, $$props) {
|
||||
push();
|
||||
$$payload.out += `<h1>${escape_html(page.status)}</h1> <p>${escape_html(page.error?.message)}</p>`;
|
||||
pop();
|
||||
}
|
||||
export {
|
||||
Error$1 as default
|
||||
};
|
@@ -0,0 +1,9 @@
|
||||
import "clsx";
|
||||
function _layout($$payload, $$props) {
|
||||
let { children } = $$props;
|
||||
children($$payload);
|
||||
$$payload.out += `<!---->`;
|
||||
}
|
||||
export {
|
||||
_layout as default
|
||||
};
|
55
.svelte-kit/output/server/entries/pages/_page.svelte.js
Normal file
55
.svelte-kit/output/server/entries/pages/_page.svelte.js
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user