mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
docs: link to nuxt.com instead of v3.nuxtjs.org (#9786)
This commit is contained in:
parent
30c4a599d2
commit
c0be933b02
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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')
|
||||
}
|
||||
})
|
||||
|
@ -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>
|
||||
|
@ -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: {
|
||||
|
@ -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.
|
||||
*
|
||||
|
@ -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'}
|
||||
*/
|
||||
|
@ -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[]
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user