I am running two projects using very similar bases. They are both bundling the same JS files, but when I am debugging one it show the Source of the JS files in source in Chrome Developer tools, but the other only shows the bundled files. Any ideas why this might be?
Scripts:
Bundles:
Figured it out: at the bottom of the BundleConfig we had mandated:
BundleTable.EnableOptimizations = true;
Removed this and can view source now.