I have different custom Module paths/ Namespaces in my CodeIgniter4 project, and I just recently upgraded to version 4.4.0. in this upgrade the route settings will move from Config/Routes.php to Config/Routing.php file.
Now while I load my modules/namespace routes; my module routes are not identified because the $defaultNamespace setup is now in a different file.
How can I handle this?
I have added the Routes path to the $routesFiles parameter in the Routing.php
public array $routeFiles = [
APPPATH . 'Config/Routes.php',
'BudgetingModule\Config/Routes.php',
'FeeModule\Config/Routes.php',
];