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:
parent
464b0a108e
commit
ff8004f6a7
2 changed files with 6 additions and 1 deletions
5
.changeset/gentle-moose-provide.md
Normal file
5
.changeset/gentle-moose-provide.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Guard globalThis.astroAsset usage in proxy code to avoid errors in wonky situations
|
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue