In one of my razor page I have the following in the scripts section
@Scripts.Render("~/bundles/script1")
@Scripts.Render("~/bundles/script2")
@Scripts.Render("~/bundles/script3")
The problem is it will render 3 JavaScript files. Is there any way they can be bundled in one file without changing the BundleConfig file?
Thanks,