[ColdBox 4.2.0]: SES includeRoutes()

I have the following code in c:/development/myapp/config/routes.cfm

`

// Include some additional routes
includeRoutes(“config/routesapi”);

`

It turns out the path is pointing to c:/development/coldbox/system/interceptors/config/routesapi.cfm

I was wondering if there is a way to set the path under /myapp like c:/development/myapp/interceptors/config/routesapi.cfm

Thanks!

Answered my own question. After following the logic on how routes are set up in SES.importConfiguration(), I missed “/” on front of “config/routesapi”.

To prevent confusion, it would be nice to admin/someone could fix the documentation on http://wiki.coldbox.org/wiki/URLMappings.cfm.

Thanks!