All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
path
When defining a route, it's not necessary to specify the path option if it matches the route name.
this.route('blog-posts', { path: '/blog-posts' });
this.route('blog-posts');
this.route('blog-posts', { path: '/blog' });