@@ -98,7 +98,7 @@ export interface Auth0ClientOptions {
98
98
/**
99
99
* Configure the session timeouts and whether to use rolling sessions or not.
100
100
*
101
- * See [Session configuration](https://github.com/auth0/nextjs-auth0#session-configuration) for additional details.
101
+ * See [Session configuration](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md #session-configuration) for additional details.
102
102
*/
103
103
session ?: SessionConfiguration ;
104
104
@@ -112,28 +112,28 @@ export interface Auth0ClientOptions {
112
112
/**
113
113
* A method to manipulate the session before persisting it.
114
114
*
115
- * See [beforeSessionSaved](https://github.com/auth0/nextjs-auth0#beforesessionsaved) for additional details
115
+ * See [beforeSessionSaved](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md #beforesessionsaved) for additional details
116
116
*/
117
117
beforeSessionSaved ?: BeforeSessionSavedHook ;
118
118
/**
119
119
* A method to handle errors or manage redirects after attempting to authenticate.
120
120
*
121
- * See [onCallback](https://github.com/auth0/nextjs-auth0#oncallback) for additional details
121
+ * See [onCallback](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md #oncallback) for additional details
122
122
*/
123
123
onCallback ?: OnCallbackHook ;
124
124
125
125
// provide a session store to persist sessions in your own data store
126
126
/**
127
127
* A custom session store implementation used to persist sessions to a data store.
128
128
*
129
- * See [Database sessions](https://github.com/auth0/nextjs-auth0#database-sessions) for additional details.
129
+ * See [Database sessions](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md #database-sessions) for additional details.
130
130
*/
131
131
sessionStore ?: SessionDataStore ;
132
132
133
133
/**
134
134
* Configure the paths for the authentication routes.
135
135
*
136
- * See [Custom routes](https://github.com/auth0/nextjs-auth0#custom-routes) for additional details.
136
+ * See [Custom routes](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md #custom-routes) for additional details.
137
137
*/
138
138
routes ?: RoutesOptions ;
139
139
0 commit comments