You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We save off the generated bundle to a file with code that looks something like this:
var scriptBundle = new ScripBundle("~/Scripts/Js").IncludeDirectory("~/Themes/Default/Scripts/foundation/base", "*.js");
BundleTable.Bundles.Add(scriptBundle);
scriptBundle.GenerateBundleResponse(new BundleContext(ctx, BundleTable.Bundles, scriptBundle.Path));
File.WriteAllText(combinedPath, response.Content);
That doesn't work when I try using ScriptWithSourceMapBundle(). The response.Content() seems to have the uniminfied JavaScript after the minified JavaScript, and I there doesn't seem to be a way to get the map file so I can save that as well?
The text was updated successfully, but these errors were encountered:
We save off the generated bundle to a file with code that looks something like this:
That doesn't work when I try using ScriptWithSourceMapBundle(). The response.Content() seems to have the uniminfied JavaScript after the minified JavaScript, and I there doesn't seem to be a way to get the map file so I can save that as well?
The text was updated successfully, but these errors were encountered: