docs: update broken docs links (#31430)

This commit is contained in:
Adam DeHaven 2025-03-18 19:23:12 -04:00 committed by GitHub
parent 3ab86cebe1
commit fc03d2a92b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -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 ```ts
import { TemplateParamsPlugin, AliasSortingPlugin } from '@unhead/vue/plugins' import { TemplateParamsPlugin, AliasSortingPlugin } from '@unhead/vue/plugins'

View File

@ -36,7 +36,7 @@ export function updateRuntimeConfig (runtimeConfig: Record<string, unknown>) {
} }
/** /**
* 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 * These utils will be replaced by util exposed from nitropack. See https://github.com/nitrojs/nitro/pull/2404
* for more context and future plans.) * for more context and future plans.)

View File

@ -86,7 +86,7 @@ export default <NitroErrorHandler> 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) { function isJsonRequest (event: H3Event) {

View File

@ -460,7 +460,7 @@ export default defineResolvers({
* - Adds the `DeprecationsPlugin`: supports `hid`, `vmid`, `children`, `body` * - Adds the `DeprecationsPlugin`: supports `hid`, `vmid`, `children`, `body`
* - Adds the `PromisesPlugin`: supports promises as input * - 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 * @example
* ```ts * ```ts