I have a web console that I'm building with ServiceStack's AppHostHttpListenerBase (i.e. self hosted).
I'd like to use less.js so I can use .less style sheets but ServiceStack always returns 'Forbidden' when an request is made to any file that isn't .js, .css, .html etc.
I tried using an httpmodule in the app.config to process path "*.less" instead but I'm not sure that ServiceStack self hosted interprets the config file fully.
Is there a way to configure ServiceStack to serve static content of arbitrary filetype?