0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

fix: guard asset global usage (#11171)

* fix: guard global usage

* chore: changeset
This commit is contained in:
Erika 2024-05-31 09:35:35 -04:00 committed by GitHub
parent 464b0a108e
commit ff8004f6a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Guard globalThis.astroAsset usage in proxy code to avoid errors in wonky situations

View file

@ -13,7 +13,7 @@ export function getProxyCode(options: ImageMetadata, isSSR: boolean): string {
}
${
!isSSR
? `if (target[name] !== undefined) globalThis.astroAsset.referencedImages.add(${stringifiedFSPath});`
? `if (target[name] !== undefined && globalThis.astroAsset) globalThis.astroAsset?.referencedImages.add(${stringifiedFSPath});`
: ''
}
return target[name];