David Babayan
David Babayan

Reputation: 49

How to configure bower in Asp.net project using Visual Studio Code

I create an empty project using Visual Studio Code's terminal. Then I add bower.json and bower_config.bowerrc files then using terminal run the bower update command. The files contains next code:

bower.json

{
    "name": "asp.net",
    "private": true,
    "directory": "wwwroot/lib",
    "dependencies": {
        "bootstrap": "4.0.0-alpha.6"
    }
}

bower_config.bowerrc

{
    "directory": "wwwroot/lib"
}

But even I configured it to download files into wwwrooot/lib folder it still install into bower_comoponents folder. How can I resolve that?

P.S. I need to use Visual Studio Code not Visual Studio.

Upvotes: 1

Views: 267

Answers (1)

Marc LaFleur
Marc LaFleur

Reputation: 33132

Your bower configuration file should be named .bowerrc (no bower_config prefix).

Upvotes: 1

Related Questions