diff --git a/src/utils/config.ts b/src/utils/config.ts index a182ded60..799d86e38 100644 --- a/src/utils/config.ts +++ b/src/utils/config.ts @@ -51,7 +51,7 @@ export async function loadContentConfig(nuxt: Nuxt, options: { defaultFallback?: const hasNoCollections = Object.keys(collectionsConfig || {}).length === 0 if (hasNoCollections) { - logger.warn('No content configuration found, falling back to default collection. In order to have full control over your collections, create the config file in project root. See: https://content.nuxt.com/getting-started/installation') + logger.warn('No content configuration found, falling back to default collection. In order to have full control over your collections, create the config file in project root. See: https://content.nuxt.com/docs/getting-started/installation') } const collections = resolveCollections(hasNoCollections ? defaultConfig.collections : collectionsConfig)