diff --git a/docs/3.api/1.components/10.nuxt-picture.md b/docs/3.api/1.components/10.nuxt-picture.md index 85bdbb97a9..65f30ec043 100644 --- a/docs/3.api/1.components/10.nuxt-picture.md +++ b/docs/3.api/1.components/10.nuxt-picture.md @@ -4,7 +4,7 @@ description: "Nuxt provides a component to handle automatic image links: - label: Source icon: i-simple-icons-github - to: https://github.com/nuxt/image/blob/main/src/runtime/components/nuxt-picture.ts + to: https://github.com/nuxt/image/blob/main/src/runtime/components/NuxtPicture.vue size: xs --- diff --git a/docs/3.api/1.components/9.nuxt-img.md b/docs/3.api/1.components/9.nuxt-img.md index 8585db81f3..4b96442463 100644 --- a/docs/3.api/1.components/9.nuxt-img.md +++ b/docs/3.api/1.components/9.nuxt-img.md @@ -4,7 +4,7 @@ description: "Nuxt provides a component to handle automatic image opti links: - label: Source icon: i-simple-icons-github - to: https://github.com/nuxt/image/blob/main/src/runtime/components/nuxt-img.ts + to: https://github.com/nuxt/image/blob/main/src/runtime/components/NuxtImg.vue size: xs --- diff --git a/packages/schema/src/config/nitro.ts b/packages/schema/src/config/nitro.ts index 8da7ca4b7e..58339db045 100644 --- a/packages/schema/src/config/nitro.ts +++ b/packages/schema/src/config/nitro.ts @@ -48,7 +48,7 @@ export default defineUntypedSchema({ * Each handler accepts the following options: * * - handler: The path to the file defining the handler. - * - route: The route under which the handler is available. This follows the conventions of [radix3](https://github.com/unjs/radix3.) + * - route: The route under which the handler is available. This follows the conventions of [rou3](https://github.com/unjs/rou3.) * - method: The HTTP method of requests that should be handled. * - middleware: Specifies whether it is a middleware handler. * - lazy: Specifies whether to use lazy loading to import the handler. diff --git a/packages/vite/src/server.ts b/packages/vite/src/server.ts index 84f34e74ee..56706bfdce 100644 --- a/packages/vite/src/server.ts +++ b/packages/vite/src/server.ts @@ -116,7 +116,7 @@ export async function buildServer (ctx: ViteBuildContext) { if (Array.isArray(serverConfig.ssr!.external)) { serverConfig.ssr!.external.push( // explicit dependencies we use in our ssr renderer - these can be inlined (if necessary) in the nitro build - 'unhead', '@unhead/ssr', 'unctx', 'h3', 'devalue', '@nuxt/devalue', 'radix3', 'unstorage', 'hookable', + 'unhead', '@unhead/ssr', 'unctx', 'h3', 'devalue', '@nuxt/devalue', 'radix3', 'rou3', 'unstorage', 'hookable', // dependencies we might share with nitro - these can be inlined (if necessary) in the nitro build ...runtimeDependencies, )