diff --git a/docs/1.getting-started/12.upgrade.md b/docs/1.getting-started/12.upgrade.md index da4b3179da..12f46400c5 100644 --- a/docs/1.getting-started/12.upgrade.md +++ b/docs/1.getting-started/12.upgrade.md @@ -318,7 +318,7 @@ useHead({ }) ``` -* If you're using [Template Params](https://unhead.unjs.io/docs/plugins/template-params) or [Alias Tag Sorting](https://unhead.unjs.io/docs/plugins/alias-sorting), you will need to explicitly opt in to these features now. +* If you're using [Template Params](https://unhead.unjs.io/docs/head/guides/plugins/template-params) or [Alias Tag Sorting](https://unhead.unjs.io/docs/head/guides/plugins/alias-sorting), you will need to explicitly opt in to these features now. ```ts import { TemplateParamsPlugin, AliasSortingPlugin } from '@unhead/vue/plugins' diff --git a/packages/kit/src/runtime-config.ts b/packages/kit/src/runtime-config.ts index a77a514e5b..592656c926 100644 --- a/packages/kit/src/runtime-config.ts +++ b/packages/kit/src/runtime-config.ts @@ -36,7 +36,7 @@ export function updateRuntimeConfig (runtimeConfig: Record) { } /** - * https://github.com/nitrojs/nitro/blob/main/src/runtime/internal/utils.env.ts. + * https://github.com/nitrojs/nitro/blob/v2/src/runtime/internal/utils.env.ts. * * These utils will be replaced by util exposed from nitropack. See https://github.com/nitrojs/nitro/pull/2404 * for more context and future plans.) diff --git a/packages/nuxt/src/core/runtime/nitro/handlers/error.ts b/packages/nuxt/src/core/runtime/nitro/handlers/error.ts index 003fc14e65..d3cf1a5c48 100644 --- a/packages/nuxt/src/core/runtime/nitro/handlers/error.ts +++ b/packages/nuxt/src/core/runtime/nitro/handlers/error.ts @@ -86,7 +86,7 @@ export default async function errorhandler (error: H3Error, } /** - * Nitro internal functions extracted from https://github.com/nitrojs/nitro/blob/main/src/runtime/internal/utils.ts + * Nitro internal functions extracted from https://github.com/nitrojs/nitro/blob/v2/src/runtime/internal/utils.ts */ function isJsonRequest (event: H3Event) { diff --git a/packages/schema/src/config/app.ts b/packages/schema/src/config/app.ts index 28c6be5b34..89e68fb211 100644 --- a/packages/schema/src/config/app.ts +++ b/packages/schema/src/config/app.ts @@ -460,7 +460,7 @@ export default defineResolvers({ * - Adds the `DeprecationsPlugin`: supports `hid`, `vmid`, `children`, `body` * - Adds the `PromisesPlugin`: supports promises as input * - * @see [`unhead` migration documentation](https://unhead-unjs-io.nuxt.dev/docs/migration) + * @see [`unhead` migration documentation](https://unhead-unjs-io.nuxt.dev/docs/typescript/head/guides/get-started/migration) * * @example * ```ts