diff --git a/docs/2.guide/2.directory-structure/1.modules.md b/docs/2.guide/2.directory-structure/1.modules.md index b2dbc75c243e..16b7b71351ca 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"} - -::