docs: link to nuxt.com instead of v3.nuxtjs.org (#9786)

This commit is contained in:
Sébastien Chopin 2022-12-19 12:50:01 +01:00 committed by GitHub
parent 30c4a599d2
commit c0be933b02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 11 additions and 11 deletions

View File

@ -2,4 +2,4 @@
> Toolkit for authoring Nuxt Modules
Learn more about this package: <https://v3.nuxtjs.org>
Learn more about this package: <https://nuxt.com/docs/guide/going-further/kit>

View File

@ -2,4 +2,4 @@
> Nuxt Command Line Interface
Learn more about this package: <https://v3.nuxtjs.org/api/commands/add>
Learn more about this package: <https://nuxt.com/docs/api/commands/add>

View File

@ -93,7 +93,7 @@ export default defineNuxtCommand({
console.log([
`👉 Report an issue: https://github.com/${repo}/issues/new`,
`👉 Suggest an improvement: https://github.com/${repo}/discussions/new`,
`👉 Read documentation: ${isNuxt3OrBridge ? 'https://v3.nuxtjs.org' : 'https://nuxtjs.org'}`
`👉 Read documentation: ${isNuxt3OrBridge ? 'https://nuxt.com' : 'https://nuxtjs.org'}`
].join('\n\n') + '\n')
}
})

View File

@ -2,4 +2,4 @@
> The core of Nuxt 3
Learn more about this package: <https://v3.nuxtjs.org>
Learn more about this package: <https://nuxt.com>

View File

@ -8,7 +8,7 @@ export default defineUntypedSchema({
* pages, layouts (and other components) without needing to explicitly import them.
*
* @default {{ dirs: [`~/components`] }}
* @see https://v3.nuxtjs.org/guide/directory-structure/components
* @see https://nuxt.com/docs/guide/directory-structure/components
* @type {boolean | typeof import('../src/types/components').ComponentsOptions | typeof import('../src/types/components').ComponentsOptions['dirs']}
*/
components: {
@ -26,7 +26,7 @@ export default defineUntypedSchema({
/**
* Configure how Nuxt auto-imports composables into your application.
*
* @see [Nuxt 3 documentation](https://v3.nuxtjs.org/guide/directory-structure/composables)
* @see [Nuxt 3 documentation](https://nuxt.com/docs/guide/directory-structure/composables)
* @type {typeof import('../src/types/imports').ImportsOptions}
*/
imports: {

View File

@ -38,7 +38,7 @@ export default defineUntypedSchema({
* - middleware: Specifies whether it is a middleware handler.
* - lazy: Specifies whether to use lazy loading to import the handler.
*
* @see https://v3.nuxtjs.org/guide/features/server-routes
* @see https://nuxt.com/docs/guide/directory-structure/server
*
* @note Files from `server/api`, `server/middleware` and `server/routes` will be automatically registered by Nuxt.
*

View File

@ -24,7 +24,7 @@ export default defineUntypedSchema({
* If set to true, this will type check in development. You can restrict this to build-time type checking by setting it to `build`.
* Requires to install `typescript` and `vue-tsc` as dev dependencies.
*
* @see https://v3.nuxtjs.org/guide/concepts/typescript#type-checking
* @see https://nuxt.com/docs/guide/concepts/typescript
*
* @type {boolean | 'build'}
*/

View File

@ -12,7 +12,7 @@ export interface ImportsOptions extends UnimportOptions {
/**
* Directories to scan for auto imports.
*
* @see https://v3.nuxtjs.org/guide/directory-structure/composables/#how-files-are-scanned
* @see https://nuxt.com/docs/guide/directory-structure/composables#how-files-are-scanned
* @default ['./composables', './utils']
*/
dirs?: string[]

View File

@ -2,4 +2,4 @@
> [Vite](https://vitejs.dev) bundler for Nuxt 3.
Learn more about this package: <https://v3.nuxtjs.org>
Learn more about this package: <https://nuxt.com/docs/api/configuration/nuxt-config#vite>

View File

@ -2,4 +2,4 @@
> The [Webpack](https://webpack.js.org) bundler for Nuxt 3
Learn more about this package: <https://v3.nuxtjs.org>
Learn more about this package: <https://nuxt.com/docs/api/configuration/nuxt-config#webpack-1>