summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2023-01-03 14:38:17 -0500
committerGravatar GitHub <noreply@github.com> 2023-01-03 14:38:17 -0500
commitf0a3288ddb164aa79590eb2138bb6b82a30983a8 (patch)
treea4ee2d74441a9cd4edc91164c24c284836c6ce7b
parent857ae26b2ec3ab9f06543076e3d102acc51dff6d (diff)
downloadastro-f0a3288ddb164aa79590eb2138bb6b82a30983a8.tar.gz
astro-f0a3288ddb164aa79590eb2138bb6b82a30983a8.tar.zst
astro-f0a3288ddb164aa79590eb2138bb6b82a30983a8.zip
Fix missing ts flag on main (#5730)
-rw-r--r--packages/astro/src/core/render/result.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/astro/src/core/render/result.ts b/packages/astro/src/core/render/result.ts
index fad247955..06c5e0698 100644
--- a/packages/astro/src/core/render/result.ts
+++ b/packages/astro/src/core/render/result.ts
@@ -166,6 +166,7 @@ export function createResult(args: CreateResultArgs): SSRResult {
const astroSlots = new Slots(result, slots, args.logging);
const Astro: AstroGlobal = {
+ // @ts-expect-error
__proto__: astroGlobal,
// @ts-ignore
get clientAddress() {