How to update and include Twitter Bootstrap 3 on webapp or yo angular?

后端 未结 3 1455
时光说笑
时光说笑 2021-01-01 23:15

I used yo webapp or yo angular to create new a project, and I received Bootstrap include is version 2.3.2, but I want use the latest version of Bootstrap.

How can I

3条回答
  •  执笔经年
    2021-01-01 23:29

    Yeoman's webapp & angular generators grab Sass for Bootstrap, which is based on the 2.3.2 build of Twitter Bootstrap.

    After you run yo webapp or yo angular, you can add Bootstrap 3.0 by running the following command.

    $ bower install --save bootstrap
    

    This will download Bootstrap 3.0 for you.

提交回复
热议问题