Created
October 6, 2021 18:40
-
-
Save AaronSadlerUK/09bcd9a79ea76a6b9149455c79809e99 to your computer and use it in GitHub Desktop.
How to use bundling and minification with Umbraco V9
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
| [ | |
| { | |
| "outputFileName": "wwwroot/css/site.min.css", | |
| "inputFiles": [ | |
| "wwwroot/lib/bootstrap/dist/css/bootstrap.css", | |
| "wwwroot/css/site.css" | |
| ] | |
| }, | |
| { | |
| "outputFileName": "wwwroot/js/site.min.js", | |
| "inputFiles": [ | |
| "wwwroot/js/site.js" | |
| ], | |
| "minify": { | |
| "enabled": true, | |
| "renameLocals": true | |
| }, | |
| "sourceMap": false | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment