Created
October 30, 2017 21:33
-
-
Save zealott/b61e10555e6aa35f1f8e08389a689551 to your computer and use it in GitHub Desktop.
Prereq: Install SquishIt https://github.com/jetheredge/SquishIt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // View (CSHTML) | |
| // Add SquishIt namespace reference | |
| @using SquishIt.Framework | |
| // CSS bundling | |
| @Html.Raw(Bundle.Css() | |
| .Add("prebuilt/css/cssFile1.css") | |
| .Add("prebuilt/css/cssFile2.css") | |
| .Add("prebuilt/css/cssFile2.css") | |
| .Render("prebuilt/css/combined-#.css")) | |
| // Bundle JavaScript | |
| @Html.Raw(Bundle.JavaScript() | |
| .Add("prebuilt/js/javaScriptFile1.js") | |
| .Add("prebuilt/js/javaScriptFile2.js") | |
| .Add("prebuilt/js/javaScriptFile3.js") | |
| .Render("prebuilt/js/combined-#.js")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment