Skip to content

Commit 8f6df0c

Browse files
authored
Fix typo in error-reference.md for baseURL (#1092)
1 parent 3e88545 commit 8f6df0c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/resources/error-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ It is safe to ignore the development warning - it is only meant as a heads-up fo
2626

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

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

3131
```ts [nuxt.config.ts]
3232
export default defineNuxtConfig({
3333
auth: {
34-
baseUrl: 'https://example.com/api/auth', // [!code ++]
34+
baseURL: 'https://example.com/api/auth', // [!code ++]
3535
},
3636
// ... other configuration
3737
})

0 commit comments

Comments
 (0)