ignore: cloud resource

This commit is contained in:
Dax Raad 2025-08-30 00:58:22 -04:00
commit f821b55514
20 changed files with 180 additions and 17 deletions

View file

@ -0,0 +1,15 @@
import { env } from "cloudflare:workers"
export const Resource = new Proxy(
{},
{
get(_target, prop: string) {
if (prop in env) {
// @ts-expect-error
const value = env[prop]
return typeof value === "string" ? JSON.parse(value) : value
}
throw new Error(`"${prop}" is not linked in your sst.config.ts (cloudflare)`)
},
},
) as Record<string, any>