You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: "Sessions cannot be used with an adapter that doesn't support server output.",
2101
-
message:
2102
-
'Sessions require an adapter that supports server output. The adapter must set `"server"` in the `buildOutput` adapter feature.',
2103
-
hint: 'Ensure your adapter supports `buildOutput: "server"`: https://docs.astro.build/en/reference/adapter-reference/#building-an-adapter',
2104
-
}satisfiesErrorData;
2105
-
/**
2106
-
* @docs
2107
-
* @message The `experimental.session` flag was set to `true`, but no storage was configured. Either configure the storage manually or use an adapter that provides session storage.
2108
-
* @deprecated This error was removed in Astro 5.7, when the Sessions feature stopped being experimental.
* Thrown when session storage is enabled but not configured.
2113
-
*/
2114
-
exportconstSessionConfigMissingError={
2115
-
name: 'SessionConfigMissingError',
2116
-
title: 'Session storage was enabled but not configured.',
2117
-
message:
2118
-
'The `experimental.session` flag was set to `true`, but no storage was configured. Either configure the storage manually or use an adapter that provides session storage',
2119
-
hint: 'For more information, see https://docs.astro.build/en/guides/sessions/',
2120
-
}satisfiesErrorData;
2121
-
2122
-
/**
2123
-
* @docs
2124
-
* @message Session config was provided without enabling the `experimental.session` flag
2125
-
* @deprecated This error was removed in Astro 5.7, when the Sessions feature stopped being experimental.
0 commit comments