diff options
author | 2025-02-13 13:39:09 +0000 | |
---|---|---|
committer | 2025-02-13 13:39:09 +0000 | |
commit | d79ee8cc27bf0055d1b23a9b9c0589b210c14b17 (patch) | |
tree | bba65216f3b19c863c0deabd0ddaaa2b5cd581ed | |
parent | ee6d2ccba092a5be96d9abda48b2ae2af8e74036 (diff) | |
download | astro-d79ee8cc27bf0055d1b23a9b9c0589b210c14b17.tar.gz astro-d79ee8cc27bf0055d1b23a9b9c0589b210c14b17.tar.zst astro-d79ee8cc27bf0055d1b23a9b9c0589b210c14b17.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/errors/errors-data.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/astro/src/core/errors/errors-data.ts b/packages/astro/src/core/errors/errors-data.ts index 412785d5b..900bbd6b7 100644 --- a/packages/astro/src/core/errors/errors-data.ts +++ b/packages/astro/src/core/errors/errors-data.ts @@ -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; |