| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- import { r as root } from "./root.js";
- import "./environment.js";
- let public_env = {};
- function set_private_env(environment) {
- }
- function set_public_env(environment) {
- public_env = environment;
- }
- let read_implementation = null;
- function set_read_implementation(fn) {
- read_implementation = fn;
- }
- function set_manifest(_) {
- }
- const options = {
- app_template_contains_nonce: false,
- async: false,
- csp: { "mode": "auto", "directives": { "upgrade-insecure-requests": false, "block-all-mixed-content": false }, "reportOnly": { "upgrade-insecure-requests": false, "block-all-mixed-content": false } },
- csrf_check_origin: true,
- csrf_trusted_origins: [],
- embedded: false,
- env_public_prefix: "PUBLIC_",
- env_private_prefix: "",
- hash_routing: false,
- hooks: null,
- // added lazily, via `get_hooks`
- preload_strategy: "modulepreload",
- root,
- service_worker: false,
- service_worker_options: void 0,
- server_error_boundaries: false,
- templates: {
- app: ({ head, body, assets, nonce, env }) => `<!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <meta name="description" content="KeystoneIntel — Premier data intelligence firm. Proprietary signals. Strategic advantage." />
- <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90' fill='%230ea5e9'>◆</text></svg>" />
- <link rel="preconnect" href="https://fonts.googleapis.com" />
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
- <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
- <title>KeystoneIntel — Data Intelligence & Signal Brokerage</title>
- ` + head + '\n </head>\n <body data-sveltekit-preload-data="hover">\n <div style="display: contents">' + body + "</div>\n </body>\n</html>\n",
- error: ({ status, message }) => '<!doctype html>\n<html lang="en">\n <head>\n <meta charset="utf-8" />\n <title>' + message + `</title>
- <style>
- body {
- --bg: white;
- --fg: #222;
- --divider: #ccc;
- background: var(--bg);
- color: var(--fg);
- font-family:
- system-ui,
- -apple-system,
- BlinkMacSystemFont,
- 'Segoe UI',
- Roboto,
- Oxygen,
- Ubuntu,
- Cantarell,
- 'Open Sans',
- 'Helvetica Neue',
- sans-serif;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100vh;
- margin: 0;
- }
- .error {
- display: flex;
- align-items: center;
- max-width: 32rem;
- margin: 0 1rem;
- }
- .status {
- font-weight: 200;
- font-size: 3rem;
- line-height: 1;
- position: relative;
- top: -0.05rem;
- }
- .message {
- border-left: 1px solid var(--divider);
- padding: 0 0 0 1rem;
- margin: 0 0 0 1rem;
- min-height: 2.5rem;
- display: flex;
- align-items: center;
- }
- .message h1 {
- font-weight: 400;
- font-size: 1em;
- margin: 0;
- }
- @media (prefers-color-scheme: dark) {
- body {
- --bg: #222;
- --fg: #ddd;
- --divider: #666;
- }
- }
- </style>
- </head>
- <body>
- <div class="error">
- <span class="status">` + status + '</span>\n <div class="message">\n <h1>' + message + "</h1>\n </div>\n </div>\n </body>\n</html>\n"
- },
- version_hash: "1ylonqt"
- };
- async function get_hooks() {
- let handle;
- let handleFetch;
- let handleError;
- let handleValidationError;
- let init;
- let reroute;
- let transport;
- return {
- handle,
- handleFetch,
- handleError,
- handleValidationError,
- init,
- reroute,
- transport
- };
- }
- export {
- set_public_env as a,
- set_read_implementation as b,
- set_manifest as c,
- get_hooks as g,
- options as o,
- public_env as p,
- read_implementation as r,
- set_private_env as s
- };
|