{ "version": 3, "sources": ["https://deno.land/x/fresh@1.4.2/src/runtime/head.ts", "https://deno.land/x/fresh@1.4.2/src/runtime/csp.ts", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-plus.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-minus.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/loader-2.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/search.tsx", "components/icons.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/star.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/star-filled.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/external-link.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/arrow-narrow-left.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/edit.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/arrow-left.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/error-404.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/square-rounded-plus.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/report-search.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/refresh.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/login.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/logout.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/ghost.tsx", "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/brand-youtube.tsx"], "sourcesContent": ["import { ComponentChildren, createContext } from \"preact\";\nimport { useContext } from \"preact/hooks\";\n\nexport interface HeadProps {\n children: ComponentChildren;\n}\n\nexport const HEAD_CONTEXT = createContext([]);\n\nexport function Head(props: HeadProps) {\n let context: ComponentChildren[];\n try {\n context = useContext(HEAD_CONTEXT);\n } catch (err) {\n throw new Error(\n \" component is not supported in the browser, or during suspense renders.\",\n { cause: err },\n );\n }\n context.push(props.children);\n return null;\n}\n", "import { createContext } from \"preact\";\nimport { useContext } from \"preact/hooks\";\n\nexport const SELF = \"'self'\";\nexport const UNSAFE_INLINE = \"'unsafe-inline'\";\nexport const UNSAFE_EVAL = \"'unsafe-eval'\";\nexport const UNSAFE_HASHES = \"'unsafe-hashes'\";\nexport const NONE = \"'none'\";\nexport const STRICT_DYNAMIC = \"'strict-dynamic'\";\n\nexport function nonce(val: string) {\n return `'nonce-${val}'`;\n}\n\nexport interface ContentSecurityPolicy {\n directives: ContentSecurityPolicyDirectives;\n reportOnly: boolean;\n}\n\nexport interface ContentSecurityPolicyDirectives {\n // Fetch directives\n /**\n * Defines the valid sources for web workers and nested browsing contexts\n * loaded using elements such as and