0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00

[ci] format

This commit is contained in:
Emanuele Stoppa 2025-02-13 13:39:09 +00:00 committed by astrobot-houston
parent ee6d2ccba0
commit d79ee8cc27

View file

@ -1821,8 +1821,9 @@ export const UnknownError = { name: 'UnknownError', title: 'Unknown Error.' } sa
*/
export const SessionWithoutSupportedAdapterOutputError = {
name: 'SessionWithoutSupportedAdapterOutputError',
title: 'Sessions cannot be used with an adapter that doesn\'t support server output.',
message: 'Sessions require an adapter that supports server output. The adapter must set `"server"` in the `buildOutput` adapter feature.',
title: "Sessions cannot be used with an adapter that doesn't support server output.",
message:
'Sessions require an adapter that supports server output. The adapter must set `"server"` in the `buildOutput` adapter feature.',
hint: 'Ensure your adapter supports `buildOutput: "server"`: https://docs.astro.build/en/reference/adapter-reference/#building-an-adapter',
} satisfies ErrorData;