c2a3cf0d15
template tweaks
31 lines
845 B
JSON
31 lines
845 B
JSON
// Configure bundling and minification for the project.
|
|
// More info at https://go.microsoft.com/fwlink/?LinkId=808241
|
|
[
|
|
{
|
|
"outputFileName": "wwwroot/css/global.min.css",
|
|
// An array of relative input file paths. Globbing patterns supported
|
|
"inputFiles": [
|
|
"wwwroot/css/bootstrap-custom.css",
|
|
"wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap.css",
|
|
"wwwroot/css/profile.css"
|
|
]
|
|
},
|
|
{
|
|
"outputFileName": "wwwroot/js/global.min.js",
|
|
"inputFiles": [
|
|
"wwwroot/js/action.js",
|
|
"wwwroot/js/console.js",
|
|
"wwwroot/js/penalty.js",
|
|
"wwwroot/js/profile.js",
|
|
"wwwroot/js/server.js"
|
|
],
|
|
// Optionally specify minification options
|
|
"minify": {
|
|
"enabled": true,
|
|
"renameLocals": true
|
|
},
|
|
// Optinally generate .map file
|
|
"sourceMap": false
|
|
}
|
|
]
|