icd2k3/react-router-breadcrumbs-hoc

Suppress autmatically added Home Breadcrumb

Closed this issue · 2 comments

Hi, Quick question... is there any way to suppress showing the automatic Home Breadcrumb? Thanks.

hi @mariolegnini, yep there are a couple ways to do this actually!

You can pass null in the route config object
{ path: '/', breadcrumb: null }

Or you can use the excludePaths option
withBreadcrumbs(routes, { excludePaths: ['/'] })

Thanks for the super fast response it's appreciated! It Works.