2020-05-24 02:12:37 +01:00
|
|
|
// Configure bundling and minification for the project.
|
2018-04-11 05:55:27 +01:00
|
|
|
// More info at https://go.microsoft.com/fwlink/?LinkId=808241
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"outputFileName": "wwwroot/css/site.min.css",
|
|
|
|
|
// An array of relative input file paths. Globbing patterns supported
|
|
|
|
|
"inputFiles": [
|
|
|
|
|
"wwwroot/css/site.css"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"outputFileName": "wwwroot/js/site.min.js",
|
|
|
|
|
"inputFiles": [
|
|
|
|
|
"wwwroot/js/site.js"
|
|
|
|
|
],
|
|
|
|
|
// Optionally specify minification options
|
|
|
|
|
"minify": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"renameLocals": true
|
|
|
|
|
},
|
|
|
|
|
// Optionally generate .map file
|
|
|
|
|
"sourceMap": false
|
|
|
|
|
}
|
|
|
|
|
]
|