in my asp.net core project I have bundleconfig.json:
"outputFileName": "wwwroot/js/site.min.js",
"inputFiles": [
"wwwroot/js/a.js",
"wwwroot/js/b.js
],
and I reference the bundle in _Layout.cshtml like this:
<script src="~/js/site.min.js"></script>
If I edit a.js or b.js the changes won't go to site.min.js until I build the project.
Is it possible to update the bundle (site.min.js) on save ?
bundleconfig.json. Any possibility you undid one of those options?