@@ -871,7 +871,7 @@ export const AstroResponseHeadersReassigned = {
871
871
/**
872
872
* @docs
873
873
* @see
874
- * - [experimental.session](https://5-0-0-beta. docs.astro.build/en/reference/configuration-reference/#experimentalsession )
874
+ * - [experimental.session](https://docs.astro.build/en/reference/experimental-flags/sessions/ )
875
875
* @description
876
876
* Thrown when the session storage could not be initialized.
877
877
*/
@@ -880,13 +880,13 @@ export const SessionStorageInitError = {
880
880
title : 'Session storage could not be initialized.' ,
881
881
message : ( error : string , driver ?: string ) =>
882
882
`Error when initializing session storage${ driver ? ` with driver ${ driver } ` : '' } . ${ error ?? '' } ` ,
883
- hint : 'For more information, see https://5-0-0-beta. docs.astro.build/en/reference/configuration-reference/#experimentalsession ' ,
883
+ hint : 'For more information, see https://docs.astro.build/en/reference/experimental-flags/sessions/ ' ,
884
884
} satisfies ErrorData ;
885
885
886
886
/**
887
887
* @docs
888
888
* @see
889
- * - [experimental.session](https://5-0-0-beta. docs.astro.build/en/reference/configuration-reference/#experimentalsession )
889
+ * - [experimental.session](https://docs.astro.build/en/reference/experimental-flags/sessions/ )
890
890
* @description
891
891
* Thrown when the session data could not be saved.
892
892
*/
@@ -895,7 +895,7 @@ export const SessionStorageSaveError = {
895
895
title : 'Session data could not be saved.' ,
896
896
message : ( error : string , driver ?: string ) =>
897
897
`Error when saving session data${ driver ? ` with driver ${ driver } ` : '' } . ${ error ?? '' } ` ,
898
- hint : 'For more information, see https://5-0-0-beta. docs.astro.build/en/reference/configuration-reference/#experimentalsession ' ,
898
+ hint : 'For more information, see https://docs.astro.build/en/reference/experimental-flags/sessions/ ' ,
899
899
} satisfies ErrorData ;
900
900
901
901
/**
0 commit comments