From 7e4256e8ca72950adcf8b2783730bc28dbb306b8 Mon Sep 17 00:00:00 2001 From: Adrien Autricque Date: Tue, 12 May 2026 11:46:03 +0200 Subject: [PATCH] Fix typo in error-reference.md for baseURL --- docs/resources/error-reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/error-reference.md b/docs/resources/error-reference.md index 6be154482..32ab09cc2 100644 --- a/docs/resources/error-reference.md +++ b/docs/resources/error-reference.md @@ -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 })