0

我正在尝试在 sage wp 主题中添加新的凉亭组件,唯一的问题是我只能在 sass 中添加 manyaly?

这是我的bower.json

{
  "name": "sage",
  "homepage": "https://roots.io/sage/",
  "authors": [
    "Ben Word <ben@benword.com>"
  ],
  "license": "MIT",
  "private": true,
  "dependencies": {
    "bootstrap-sass": "3.3.7",
    "pushy": "1.0.0",
    "fullpage.js": "2.9.2"
  }
}

但是在main.scss中什么都没有添加?

// Automatically injected Bower dependencies via wiredep (never manually edit this block)
// bower:scss
@import "../../bower_components/bootstrap-sass/assets/stylesheets/_bootstrap.scss";
// endbower  
4

1 回答 1

2

当您运行 bower install 命令时,您必须将 --save 标志添加到它的末尾,以便它更新所有内容。

于 2017-01-30T17:49:07.443 回答