Web Build Automation Copy Files - Resources path

I’m using Build Automation Copy Files to copy a folder, ‘fontawesome-pro’ to the Resources folder. That works great as I can see the ‘fontawesome-pro’ folder in the debug/Resources folder. :slight_smile:

But when I add the following to Application.HTMLHeader, it doesn’t seem to be able to access that path.

[code]

[/code]

In the Resources folder I see a bunch of images referenced in the html source, but using ‘framework’ in the paths:

[code]

[/code]

But when I try changing the path from ‘Resources’ to ‘framework’, the app never loads in the browser.

[code]

[/code]

Any ideas? I can’t seem to find anything in the docs. :frowning:

The web app doesn’t know anything about the layout on disk. You’ll need to use App.HandleUrl to intercept those requests to /Resources.

Thank you!