Search code examples
nestjs

nestjs returns 404 not found for 1 routes working fine for others


I am using nestjs to create an API, quite new to it. I created 4 modules and all 4 seem to be working fine. I created another module name steps but all routes I access in it returns 404 not found.


Solution

  • You either have a typo in your @Controller() decorator in your controller file, or you haven't registered the controller in the newly created module (moduleName.module.ts file). Those were the most common errors for me.