2016-09-06 17:09:19 -07:00
|
|
|
|
// Configure bundling and minification for the project.
|
|
|
|
|
// 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": [
|
2018-04-14 10:43:30 +02:00
|
|
|
|
"wwwroot/css/**/*.css"
|
2016-09-06 17:09:19 -07:00
|
|
|
|
]
|
|
|
|
|
},
|
2018-04-13 13:45:21 +02:00
|
|
|
|
{
|
|
|
|
|
"outputFileName": "wwwroot/js/site.js",
|
|
|
|
|
"inputFiles": [
|
2018-04-14 10:43:30 +02:00
|
|
|
|
"wwwroot/lib/signalr/signalr.js",
|
|
|
|
|
"wwwroot/lib/toastr/toastr.js"
|
2018-04-13 13:45:21 +02:00
|
|
|
|
],
|
|
|
|
|
// Optionally specify minification options
|
|
|
|
|
"minify": {
|
|
|
|
|
"enabled": false,
|
|
|
|
|
"renameLocals": true
|
|
|
|
|
},
|
|
|
|
|
// Optinally generate .map file
|
|
|
|
|
"sourceMap": false
|
|
|
|
|
},
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
|
|
|
|
"outputFileName": "wwwroot/js/site.min.js",
|
|
|
|
|
"inputFiles": [
|
|
|
|
|
"wwwroot/js/site.js"
|
|
|
|
|
],
|
|
|
|
|
// Optionally specify minification options
|
|
|
|
|
"minify": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"renameLocals": true
|
|
|
|
|
},
|
|
|
|
|
// Optinally generate .map file
|
|
|
|
|
"sourceMap": false
|
|
|
|
|
}
|
|
|
|
|
]
|