Currently in the process of creating a new website utilizing angular, MVC, and Web API. The plan is to keep the static content (js, css, images, etc) in Site A, the MVC site in Site B, and the api in Site C. These will be separate sites, not virtual directories. The goal is to utilize bundling in the MVC site to combine the js and css files from the static site for use in the MVC site.
I have implemented a Virtual Path Provider, however, upon loading the site, angular does not seem to function and no errors are thrown. It appears that the angular.js file is not being loaded from the bundle, as angular works when a local javascript file is included.
Is it possible to achieve what I am attempting to do? If so, how can this be accomplished?