moleculer-web
moleculer-web copied to clipboard
Route path name clash
Creating two routes one with path /test
and the other with path /test2
Make sure the /test
route comes before the /test2
route in the routes array.
Then curl <BASE_URL>/test2
will match /test
due to url.startsWith(route.path)
in the rest request handler.