After the individual who departed from the company utilized Nest.js to create this server-side system. They established the auth.controller, auth.service, auth.module, auth-token, jwt.strategy, and jwt-payload, with everything properly configured. I verified that all modules were imported correctly and the providers were set up appropriately.
However, despite my efforts to send HTTP requests to various endpoints on the front-end, I consistently receive a 404 error code. Even when attempting to implement a basic endpoint like this:
@Get('/meow')
toMeow(){
return 'meow';
}*
in the controller file, I still encounter difficulties in pulling off any successful HTTP requests.
Interestingly, I can successfully retrieve HTTP requests from controllers in other directories by using the same address along with the routes attached to them.
What could be causing this issue?