Using ElixirPath in subdirectory

Hello All,

I’m trying to set up a Coldbox/Elixir app in a subdirectory for testing as that’s how it would eventually be deployed. Currently elixirPath is appending /includes to the filename passed and appears to be ignoring any of the settings telling it that the file is in a sub-directory.

I’ve set the following:
COLDBOX_APP_MAPPING = “/Testapp”;

and even tried explicitly setting
COLDBOX_APP_ROOT_PATH = "c:\inetpub\wwwroot\Testapp";

But when I view the output in my index.cfm the results are as follows:
elixerpath: #html.elixirPath(“css/App.css”)#
resolves to:
elixerpath: /includes/css/App.css

the actual path to the file and how it was setup is:
/Testapp/includes/css/App.css

Looking at HTMLHelper.cfc I don’t see elixirPath set up to handle being in a sub-directory.

cheers,
Jim