From c4222b1f6e7ddd881f8f47ecd9f52ab8a07e964a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 8 Mar 2023 17:06:22 +0100 Subject: [PATCH] docs: fix local modules --- docs/2.guide/2.directory-structure/1.modules.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/2.guide/2.directory-structure/1.modules.md b/docs/2.guide/2.directory-structure/1.modules.md index b2dbc75c2..16b7b7135 100644 --- a/docs/2.guide/2.directory-structure/1.modules.md +++ b/docs/2.guide/2.directory-structure/1.modules.md @@ -7,7 +7,7 @@ description: Use the modules/ directory to automatically register local modules # Modules Directory -::StabilityEdge +:StabilityEdge Nuxt scans the `modules/` directory and loads them before starting. It is a good place to place any local modules you develop while building your application. @@ -49,13 +49,11 @@ When starting Nuxt, the `hello` module will be registered and the `/api/hello` r The local modules are registered by alphabetical order. You can change the order by prefixing with a number if front of each directory: -`ˋ`md +```md modules/ 1.first-module/ index.ts 2.second-module.ts -ˋ`ˋ +``` :ReadMore{link="/docs/guide/going-further/modules"} - -::