From a8f7858f056ca22c7564dc4eaf99caa93ddb5a7e Mon Sep 17 00:00:00 2001 From: Esteban Dalel R Date: Wed, 13 Mar 2024 16:50:56 -0400 Subject: [PATCH] Update README.md Fix typo Signed-off-by: Esteban Dalel R --- templates/app/routes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/app/routes/README.md b/templates/app/routes/README.md index fd8d0b2a..3fe1becf 100644 --- a/templates/app/routes/README.md +++ b/templates/app/routes/README.md @@ -13,7 +13,7 @@ typically stored in a file; be careful to group your routes logically, e.g. all `/users` routes in a `users.js` file. We have added a `root.js` file for you with a '/' root added. -If a single file become too large, create a folder and add a `index.js` file there: +If a single file becomes too large, create a folder and add a `index.js` file there: this file must be a Fastify plugin, and it will be loaded automatically by the application. You can now add as many files as you want inside that folder. In this way you can create complex routes within a single monolith,