This commit is contained in:
Frank
2026-05-21 16:11:41 -04:00
parent 88359c60b1
commit d7835dc760
@@ -7,7 +7,7 @@ export const Resource = new Proxy(
get(_target, prop: string) {
if (prop in env) {
// @ts-expect-error
const value = env[prop]
const value = env[`SST_RESOURCE_${prop}`]
return typeof value === "string" ? JSON.parse(value) : value
} else if (prop === "App") {
// @ts-expect-error