Yeoman and Bower not adding Bootstrap CSS (AngularJS generator)

后端 未结 5 1277
半阙折子戏
半阙折子戏 2020-12-24 02:15

I am following along a codelab on the Yeoman webpage, and so far I\'ve managed to follow along (with a few major hiccups getting my development environment going, but now it

5条回答
  •  攒了一身酷
    2020-12-24 02:44

    It is not ideal, but I rolled back to Bootstrap version 3.3.4 and setting up like this:

    bower install --save bootstrap#3.3.4
    
    bower_concat: {
      all: {
        dest: {
          'js': 'path/to/file/_bower.js',
          'css': 'path/to/file/_bower.css'
        }
      }
    }
    

提交回复
热议问题