I have a routing.yml file where I define the routes of my bundle. My routing file is growing bigger.
Is there a way to split the routing.yml file in multiple files in Symfony3 ?
I saw this question but it is for Symfony2. The path aren't the same.
In Symfony2, we did like this :
app_catalogs:
resource: "@AppBundle/Resources/config/routing/routing_catalog.yml"
prefix: /catalogs
I tried this but it doesn't work (my file is in the same level than routing.yml) :
app_catalogs:
resource: "app/config/routing_catalog.yml"
prefix: /catalogs