Umbraco 7.0.4 Bundling and Minification not working
I'm trying to use the Bundling and Minification feature. Every time it returns a 404 status. I manually added my virtual prefix path in web.config ("umbracoReservedPaths" variable) but it still not working.
I also added the version 1.1.0 running the command:
Umbraco 7.0.4 Bundling and Minification not working
I'm trying to use the Bundling and Minification feature. Every time it returns a 404 status. I manually added my virtual prefix path in web.config ("umbracoReservedPaths" variable) but it still not working.
I also added the version 1.1.0 running the command:
Install-Package Microsoft.AspNet.Web.Optimization -Version 1.1.0
Any ideas?
bump
Hi,
Here is tricks which i used in 6.1.6
1. Global.cs should be inherit with ApplicationEventHandler
2. override event ApplicationStarted. Below is code
protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
I assume that other formalities you already done. if you still have problem let me know i will share BundleConfig.cs as well
Yasir
is working on a reply...