I was in the process of adding javascript files to site.js and the page was recognizing the scripts however I struck a wrinkle when I tried to move the validation scripts to site.js.
Site.js appears above the validation scripts which are added to the page using
@{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
Rather than having the validation scripts for the page being on the page (or is this how most people do it) how do I add say add a validation.js page etc that I might add below the above entry.. further,
If I do add another page how do I minify it (add it to GULP) and add it in the production staging environment as well..