On one of my razor pages, I have the following script section:
@Scripts.Render("~/bundles/script1")
@Scripts.Render("~/bundles/script2")
@Scripts.Render("~/bundles/script3")
The issue is that it renders three separate JavaScript files. Is there a way to bundle them into one file without modifying the BundleConfig file?
Thank you,