0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00

[ci] format

This commit is contained in:
Matt Kane 2024-06-14 12:58:11 +00:00 committed by astrobot-houston
parent d996db6f0b
commit ec94bb4a4e
2 changed files with 6 additions and 6 deletions

View file

@ -1266,7 +1266,6 @@ export const ServerOnlyModule = {
message: (name: string) => `The "${name}" module is only available server-side.`,
} satisfies ErrorData;
/**
* @docs
* @description
@ -1286,7 +1285,8 @@ export const ServerOnlyModule = {
export const RewriteWithBodyUsed = {
name: 'RewriteWithBodyUsed',
title: 'Cannot use Astro.rewrite after the request body has been read',
message: 'Astro.rewrite() cannot be used if the request body has already been read. If you need to read the body, first clone the request.',
message:
'Astro.rewrite() cannot be used if the request body has already been read. If you need to read the body, first clone the request.',
} satisfies ErrorData;
/**