Buckets:
| import { env } from "cloudflare:workers" | |
| export { waitUntil } from "cloudflare:workers" | |
| export const Resource = new Proxy( | |
| {}, | |
| { | |
| get(_target, prop: string) { | |
| if (`SST_RESOURCE_${prop}` in env) { | |
| // @ts-expect-error | |
| const value = env[`SST_RESOURCE_${prop}`] | |
| return typeof value === "string" ? JSON.parse(value) : value | |
| } | |
| if (prop in env) { | |
| // @ts-expect-error | |
| const value = env[prop] | |
| return typeof value === "string" ? JSON.parse(value) : value | |
| } else if (prop === "App") { | |
| // @ts-expect-error | |
| return JSON.parse(env.SST_RESOURCE_App) | |
| } | |
| throw new Error(`"${prop}" is not linked in your sst.config.ts (cloudflare)`) | |
| }, | |
| }, | |
| ) as Record<string, any> | |
Xet Storage Details
- Size:
- 759 Bytes
- Xet hash:
- feea92e0babf3e1936dbf2e67533e71891b7129f29fcf2e5937f808f3adbe59c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.