In an ASP.NET Core MVC website there is a .bowerrc file:
{
"directory": "wwwroot/lib"
}
And there is also a bower.config
file:
{
"name": "ASP.NET",
"private": true,
"dependencies": {
"font-awesome": "4.5.0",
"startbootstrap-sb-admin-2": "1.0.8"
}
}
Should the project have both, does it need both? If so, what is the purpose of each?
Both files are in the root directory of the project.