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

[ci] format

This commit is contained in:
Emanuele Stoppa 2024-06-05 12:10:54 +00:00 committed by astrobot-houston
parent 35ef53c089
commit d03160af53

View file

@ -1124,8 +1124,12 @@ export const MissingMiddlewareForInternationalization = {
*/
export const RewriteEncounteredAnError = {
name: 'RewriteEncounteredAnError',
title: "Astro couldn't find the route to rewrite, or if was found but it emitted an error during the rendering phase.",
message: (route: string, stack?: string) => `The route ${route} that you tried to render doesn't exist, or it emitted an error during the rendering phase. ${stack ? stack : ""}.`
title:
"Astro couldn't find the route to rewrite, or if was found but it emitted an error during the rendering phase.",
message: (route: string, stack?: string) =>
`The route ${route} that you tried to render doesn't exist, or it emitted an error during the rendering phase. ${
stack ? stack : ''
}.`,
} satisfies ErrorData;
/**