Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/nuxtPublic

Commit86d67b2

Browse files
committed
docs: update links to module guide
1 parentac906ce commit86d67b2

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

‎docs/1.getting-started/06.styling.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ Here are a few modules to help you get started:
517517
-[Nuxt UI](https://ui.nuxt.com): A UI Library for Modern Web Apps
518518
-[Panda CSS](https://panda-css.com/docs/installation/nuxt): CSS-in-JS engine that generates atomic CSS at build time
519519

520-
Nuxt modules provide you with a good developer experience out of the box, but remember that if your favorite tool doesn't have a module, it doesn't mean that you can't use it with Nuxt! You can configure it yourself for your own project. Depending on the tool, you might need to use a[Nuxt plugin](/docs/4.x/directory-structure/app/plugins) and/or[make your own module](/docs/4.x/guide/going-further/modules). Share them with the[community](/modules) if you do!
520+
Nuxt modules provide you with a good developer experience out of the box, but remember that if your favorite tool doesn't have a module, it doesn't mean that you can't use it with Nuxt! You can configure it yourself for your own project. Depending on the tool, you might need to use a[Nuxt plugin](/docs/4.x/directory-structure/app/plugins) and/or[make your own module](/docs/4.x/guide/modules). Share them with the[community](/modules) if you do!
521521

522522
###Easily Load Webfonts
523523

‎docs/1.getting-started/17.testing.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ navigation.icon: i-lucide-circle-check
55
---
66

77
::tip
8-
If you are a module author, you can find more specific information in the[Module Author's guide](/docs/4.x/guide/going-further/modules#testing).
8+
If you are a module author, you can find more specific information in the[Module Author's guide](/docs/4.x/guide/modules/testing).
99
::
1010

1111
Nuxt offers first-class support for end-to-end and unit testing of your Nuxt application via`@nuxt/test-utils`, a library of test utilities and configuration that currently powers the[tests we use on Nuxt itself](https://github.com/nuxt/nuxt/tree/main/test) and tests throughout the module ecosystem.

‎docs/1.getting-started/18.upgrade.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ export default defineNuxtConfig({
463463
// 4. project-module-2 (can override layer modules)
464464
```
465465

466-
If you encounter issues with module order dependencies due to needing to register a hook, consider using the[`modules:done` hook](/docs/4.x/guide/going-further/modules#custom-hooks) for modules that need to call a hook. This is run after all other modules have been loaded, which means it is safe to use.
466+
If you encounter issues with module order dependencies due to needing to register a hook, consider using the[`modules:done` hook](/docs/4.x/guide/modules/recipes-advanced) for modules that need to call a hook. This is run after all other modules have been loaded, which means it is safe to use.
467467

468468
👉 See[PR#31507](https://github.com/nuxt/nuxt/pull/31507) and[issue#25719](https://github.com/nuxt/nuxt/issues/25719) for more details.
469469

‎docs/2.directory-structure/1.modules.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ modules/
5959
2.second-module.ts
6060
```
6161

62-
:read-more{to="/docs/4.x/guide/going-further/modules"}
62+
:read-more{to="/docs/4.x/guide/modules"}
6363

6464
::tip{icon="i-lucide-video"to="https://vueschool.io/lessons/creating-your-first-module-from-scratch?friend=nuxt"target="_blank"}
6565
Watch Vue School video about Nuxt private modules.

‎docs/3.guide/1.concepts/5.modules.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ Nuxt modules are now build-time-only, and the `buildModules` property used in Nu
4545

4646
Everyone has the opportunity to develop modules and we cannot wait to see what you will build.
4747

48-
:read-more{to="/docs/4.x/guide/going-further/modules"title="Module Author Guide"}
48+
:read-more{to="/docs/4.x/guide/modules"title="Module Author Guide"}

‎docs/3.guide/1.concepts/8.typescript.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Nuxt projects rely on auto-generated types to work properly. These types are sto
5252
The generated`tsconfig.json` files inside the[`.nuxt`](/docs/4.x/directory-structure/nuxt) directory include**recommended basic TypeScript configuration** for your project, references to[auto-imports](/docs/4.x/guide/concepts/auto-imports),[API route types](/docs/4.x/guide/concepts/server-engine#typed-api-routes), path aliases like`#imports`,`~/file`, or`#build/file`, and more.
5353

5454
::warning
55-
Nuxt relies on this configuration, and[Nuxt modules](/docs/4.x/guide/going-further/modules) can extend it as well. For this reason, it is not recommended to modify your`tsconfig.json` file directly, as doing so could overwrite important settings. Instead, extend it via`nuxt.config.ts`.[Learn more about extending the configuration here](/docs/4.x/directory-structure/tsconfig).
55+
Nuxt relies on this configuration, and[Nuxt modules](/docs/4.x/guide/modules) can extend it as well. For this reason, it is not recommended to modify your`tsconfig.json` file directly, as doing so could overwrite important settings. Instead, extend it via`nuxt.config.ts`.[Learn more about extending the configuration here](/docs/4.x/directory-structure/tsconfig).
5656
::
5757

5858
::tip{icon="i-lucide-video"to="https://youtu.be/umLI7SlPygY"target="_blank"}

‎docs/3.guide/6.going-further/1.internals.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ allowing different components to communicate with each other. You can think of i
1616
This context is globally available to be used with[Nuxt Kit](/docs/4.x/guide/going-further/kit) composables.
1717
Therefore only one instance of Nuxt is allowed to run per process.
1818

19-
To extend the Nuxt interface and hook into different stages of the build process, we can use[Nuxt modules](/docs/4.x/guide/going-further/modules).
19+
To extend the Nuxt interface and hook into different stages of the build process, we can use[Nuxt modules](/docs/4.x/guide/modules).
2020

2121
For more details, check out[the source code](https://github.com/nuxt/nuxt/blob/main/packages/nuxt/src/core/nuxt.ts).
2222

@@ -77,6 +77,6 @@ Nuxt builds and bundles project using Node.js but also has a runtime side.
7777

7878
While both areas can be extended, that runtime context is isolated from build-time. Therefore, they are not supposed to share state, code, or context other than runtime configuration!
7979

80-
`nuxt.config` and[Nuxt modules](/docs/4.x/guide/going-further/modules) can be used to extend the build context, and[Nuxt Plugins](/docs/4.x/directory-structure/app/plugins) can be used to extend runtime.
80+
`nuxt.config` and[Nuxt modules](/docs/4.x/guide/modules) can be used to extend the build context, and[Nuxt Plugins](/docs/4.x/directory-structure/app/plugins) can be used to extend runtime.
8181

82-
When building an application for production,`nuxt build` will generate a standalone build in the`.output` directory, independent of`nuxt.config` and[Nuxt modules](/docs/4.x/guide/going-further/modules).
82+
When building an application for production,`nuxt build` will generate a standalone build in the`.output` directory, independent of`nuxt.config` and[Nuxt modules](/docs/4.x/guide/modules).

‎docs/3.guide/6.going-further/2.hooks.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The hooking system is powered by [unjs/hookable](https://github.com/unjs/hookabl
99

1010
##Nuxt Hooks (Build Time)
1111

12-
These hooks are available for[Nuxt modules](/docs/4.x/guide/going-further/modules) and build context.
12+
These hooks are available for[Nuxt modules](/docs/4.x/guide/modules) and build context.
1313

1414
###Within`nuxt.config.ts`
1515

‎docs/3.guide/6.going-further/4.kit.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Nuxt Kit"
33
description:"@nuxt/kit provides features for module authors."
44
---
55

6-
Nuxt Kit provides composable utilities to make interacting with[Nuxt Hooks](/docs/4.x/api/advanced/hooks), the[Nuxt Interface](/docs/4.x/guide/going-further/internals#the-nuxt-interface) and developing[Nuxt modules](/docs/4.x/guide/going-further/modules) super easy.
6+
Nuxt Kit provides composable utilities to make interacting with[Nuxt Hooks](/docs/4.x/api/advanced/hooks), the[Nuxt Interface](/docs/4.x/guide/going-further/internals#the-nuxt-interface) and developing[Nuxt modules](/docs/4.x/guide/modules) super easy.
77

88
::read-more{to="/docs/4.x/api/kit"}
99
Discover all Nuxt Kit utilities.

‎docs/5.community/4.contribution.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ There is a range of different ways you might be able to contribute to the Nuxt e
1111
The Nuxt ecosystem includes many different projects and organizations:
1212

1313
*[nuxt/](https://github.com/nuxt) - core repositories for the Nuxt framework itself.[**nuxt/nuxt**](https://github.com/nuxt/nuxt) contains the Nuxt framework (both versions 2 and 3).
14-
*[nuxt-modules/](https://github.com/nuxt-modules) - community-contributed and maintained modules and libraries. There is a[process to migrate a module](/docs/4.x/guide/going-further/modules/#joining-nuxt-modules-and-nuxtjs) to`nuxt-modules`. While these modules have individual maintainers, they are not dependent on a single person.
14+
*[nuxt-modules/](https://github.com/nuxt-modules) - community-contributed and maintained modules and libraries. There is a[process to migrate a module](/docs/4.x/guide/modules/ecosystem) to`nuxt-modules`. While these modules have individual maintainers, they are not dependent on a single person.
1515
*[unjs/](https://github.com/unjs) - many of these libraries are used throughout the Nuxt ecosystem. They are designed to be universal libraries that are framework- and environment-agnostic. We welcome contributions and usage by other frameworks and projects.
1616

1717
##How To Contribute
@@ -100,7 +100,7 @@ Our aim is ensuring quality and maintaining the joy of collaborating and communi
100100

101101
###Create a Module
102102

103-
If you've built something with Nuxt that's cool, why not[extract it into a module](/docs/4.x/guide/going-further/modules), so it can be shared with others? We have[many excellent modules already](/modules), but there's always room for more.
103+
If you've built something with Nuxt that's cool, why not[extract it into a module](/docs/4.x/guide/modules), so it can be shared with others? We have[many excellent modules already](/modules), but there's always room for more.
104104

105105
If you need help while building it, feel free to[check in with us](/docs/4.x/community/getting-help).
106106

@@ -126,7 +126,7 @@ The following conventions are _required_ within the `nuxt/` organization and rec
126126

127127
####Module Conventions
128128

129-
Modules should follow the[Nuxt module template](https://github.com/nuxt/starter/tree/module). See[module guide](/docs/4.x/guide/going-further/modules) for more information.
129+
Modules should follow the[Nuxt module template](https://github.com/nuxt/starter/tree/module). See[module guide](/docs/4.x/guide/modules) for more information.
130130

131131
####Use Core`unjs/` Libraries
132132

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp