Skip to content

Commit d21477d

Browse files
committed
sync
1 parent 80fa6e6 commit d21477d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/console/resource/resource.cloudflare.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const Resource = new Proxy(
77
get(_target, prop: string) {
88
if (prop in env) {
99
// @ts-expect-error
10-
const value = env[prop]
10+
const value = env[`SST_RESOURCE_${prop}`]
1111
return typeof value === "string" ? JSON.parse(value) : value
1212
} else if (prop === "App") {
1313
// @ts-expect-error

0 commit comments

Comments
 (0)