diff --git a/docs/guide/routing.md b/docs/guide/routing.md index 9c7b4166f6..2d97ede4c8 100644 --- a/docs/guide/routing.md +++ b/docs/guide/routing.md @@ -264,7 +264,7 @@ app.Get("/", func(c *fiber.Ctx) error { ### Constraints on Adding Routes Dynamically -:::warning +:::caution Adding routes dynamically after the application has started is not supported due to design and performance considerations. Make sure to define all your routes before the application starts. :::