Hi
I am new in asp.net mvc core 2 and I am doing a new project. I have copied the following css file and js file in the folder bootstrap\dist \css and bootstrap\dist \js.
In which places I have to give the reference to this style sheet an java script in my project folder. I have given the reference to the style sheet in my layout.cshtml file as
<link href="~/css/font-awesome.min.css" rel="stylesheet" />
<link href="~/css/bootstrap.css" rel="stylesheet" />
<link href="~/css/style.css" rel="stylesheet" />
{
"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
}
]</div>