i am protecting all my routes with a single Authguard and right now i am using in each route
canActivate: [AuthguardService]
my application has 30+ routes and so i need to type this 30 times in each route. Is there a way to protect all my routes with only one entry of my authguard ?
Thanks