I've tried accessing Cassette's debugging page to see what's what, but all I get is a blank page (Firebug says I'm receiving a 404 header). Don't really know why:
www.foobar.com/_cassette
^-----------This is the debugger page for Cassette.
I'm using ASP.Net MVC3 with Cassette for asset bundling and minification.
Everything is working correctly on my dev machine, but when deploying to the hosting server, this is the message I receive:
Server Error in '/' Application.
Cannot find an asset bundle containing the path "~/Public/stylesheets/main.less".
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Cannot find an asset bundle containing the path "~/Public/stylesheets/main.less".
Again: Everything works correctly on my dev machine.
Here is my CassetteConfiguration file:
public void Configure(BundleCollection bundles, CassetteSettings settings)
{
bundles.Add<StylesheetBundle>("~/Public/stylesheets");
bundles.Add<ScriptBundle>("~/Public/javascripts");
}
And in my _Layout.cshtml file:
@{
Bundles.Reference("~/Public/stylesheets/bootstrap.css");
Bundles.Reference("~/Public/stylesheets/main.less");
}
I'm using a Shared "Cloud" hosting from Vidahost.
What steps can I take to debug this problem? I've been working on it all afternoon and so far haven't broken new ground.
Thank you!