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
The following glob pattern produces a path relative to the current directory instead of the root.
pipeline.AddJavaScriptBundle("/bundles/scripts", "/Scripts/**/*.js") --> <script src="Scripts/subfolder1/file1.js"></script>
Manually adding each subfolder & file results in the expected results.
The text was updated successfully, but these errors were encountered:
mbriggs9374
changed the title
Globbling patterns with bundling always produces a path relative to current directory instead of the root.
Globbing patterns with bundling always produces a path relative to current directory instead of the root.
Oct 1, 2020
The following glob pattern produces a path relative to the current directory instead of the root.
pipeline.AddJavaScriptBundle("/bundles/scripts", "/Scripts/**/*.js") --> <script src="Scripts/subfolder1/file1.js"></script>
Expecting:
pipeline.AddJavaScriptBundle("/bundles/scripts", "/Scripts/**/*.js") --> <script src="/Scripts/subfolder1/file1.js"></script>
Manually adding each subfolder & file results in the expected results.
The text was updated successfully, but these errors were encountered: