Guest User

Untitled

a guest
Feb 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. export class ApplicationModule implements NestModule {
  2. configure(consumer: MiddlewaresConsumer): void {
  3. consumer.apply(FrontendMiddleware).forRoutes(
  4. {
  5. path: '/**', // For all routes
  6. method: RequestMethod.ALL, // For all methods
  7. },
  8. );
  9. }
  10. }
Add Comment
Please, Sign In to add comment