bundleconfig.json 604 B

12345678910111213141516171819202122232425
  1. // Configure bundling and minification for the project.
  2. // More info at https://go.microsoft.com/fwlink/?LinkId=808241
  3. [
  4. {
  5. "outputFileName": "wwwroot/css/site.min.css",
  6. // An array of relative input file paths. Globbing patterns supported
  7. "inputFiles": [
  8. "wwwroot/css/site.css"
  9. ]
  10. },
  11. {
  12. "outputFileName": "wwwroot/js/site.min.js",
  13. "inputFiles": [
  14. "wwwroot/js/site.js"
  15. ],
  16. // Optionally specify minification options
  17. "minify": {
  18. "enabled": true,
  19. "renameLocals": true
  20. },
  21. // Optionally generate .map file
  22. "sourceMap": false
  23. }
  24. ]