飞星
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

25 líneas
604 B

  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. ]