© 2026 Hedgehog Software, LLC
npmPackages: @sveltejs/adapter-auto: ^2.0.0 => 2.1.1 @sveltejs/adapter-cloudflare: ^2.3.3 => 2.3.3 @sveltejs/adapter-cloudflare-workers: ^1.2.1 => 1.2.1 @sveltejs/kit: ^1.27.6 => 1.27.6 svelte: ^4.0.5 => 4.2.7 vite: ^4.4.2 => 4.5.0 wrangler.toml file name = "sveltekit-app" compatibility_date = "2021-11-12" account_id = "id" workers_dev = true main = "./.cloudflare/worker.js" site.bucket = "./.cloudflare/public" build.command = "npm run build" kv_namespaces = [ { binding = "KV_1", id = "id", preview_id = "preview" }, { binding = "KV_2", id = "id", preview_id = "preview" } ] app.d.ts // See https://kit.svelte.dev/docs/types#app // for information about these interfaces declare global { namespace App { // interface Error {} interface Locals { user: GithubUser; KV_1: KVNamespace; KV_2: KVNamespace; } interface Platform { env?: { KV_1: KVNamespace; KV_2: KVNamespace; }; } } declare namespace svelteHTML { interface HTMLAttributes<T> { 'on:outclick'?: CompositionEventHandler<T>; } } } export {};