Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/resources/error-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ It is safe to ignore the development warning - it is only meant as a heads-up fo

For a detailed guide on pathing logic, refer to its [dedicated page](../guide/advanced/url-resolutions.md).

The simplest way to fix this error is by providing `auth.baseUrl` in your `nuxt.config.ts`:
The simplest way to fix this error is by providing `auth.baseURL` in your `nuxt.config.ts`:

```ts [nuxt.config.ts]
export default defineNuxtConfig({
auth: {
baseUrl: 'https://example.com/api/auth', // [!code ++]
baseURL: 'https://example.com/api/auth', // [!code ++]
},
// ... other configuration
})
Expand Down