Hey there,
I just found a "bug" in your example of the fiber app (https://github.com/mvrilo/go-redoc/blob/master/_examples/fiber/main.go#L19 and in your ReadMe). If you use .Use at this point, fiber won't return a 404 for non existing routes. You can change it e.g. to .Get("/docs/*", fiberredoc.New(doc)).
Hey there,
I just found a "bug" in your example of the fiber app (https://github.com/mvrilo/go-redoc/blob/master/_examples/fiber/main.go#L19 and in your ReadMe). If you use
.Useat this point, fiber won't return a 404 for non existing routes. You can change it e.g. to.Get("/docs/*", fiberredoc.New(doc)).