diff options
author | 2023-06-28 19:51:38 +0000 | |
---|---|---|
committer | 2023-06-28 19:51:38 +0000 | |
commit | 40029e1af400354ae726526a975573e37f5ac187 (patch) | |
tree | 1f1819bb3a616126bf1bcb444a52274975f12b1e | |
parent | d3247851f04e911c134cfedc22db17b7d61c53d9 (diff) | |
download | astro-40029e1af400354ae726526a975573e37f5ac187.tar.gz astro-40029e1af400354ae726526a975573e37f5ac187.tar.zst astro-40029e1af400354ae726526a975573e37f5ac187.zip |
[ci] format
Diffstat (limited to '')
-rw-r--r-- | packages/astro/src/core/app/index.ts | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/astro/src/core/app/index.ts b/packages/astro/src/core/app/index.ts index 54fdc56c2..69f8f73c4 100644 --- a/packages/astro/src/core/app/index.ts +++ b/packages/astro/src/core/app/index.ts @@ -253,7 +253,13 @@ export class App { page.onRequest as MiddlewareResponseHandler, apiContext, () => { - return renderPage({ mod, renderContext, env: this.#env, cookies: apiContext.cookies, isCompressHTML }); + return renderPage({ + mod, + renderContext, + env: this.#env, + cookies: apiContext.cookies, + isCompressHTML, + }); } ); } else { @@ -262,7 +268,7 @@ export class App { renderContext, env: this.#env, cookies: apiContext.cookies, - isCompressHTML + isCompressHTML, }); } Reflect.set(request, responseSentSymbol, true); |