3

我通过凉亭(凉亭安装基础)在我的凉亭组件中有基础。

我的 Gruntfile.js 中也有 grunt-wiredep,如下所示:

    wiredep: {
      dev: {
       src: ['<%= FILE_PATHS.client %>/index.html']
      }
    }

另外,我的 index.html 上有

    <!-- bower:css -->
    <!-- endbower -->

运行 gruntwiredep:dev 后,foundation.js 被注入,但不是foundation.css 或foundation.scss

我错过了wiredep配置的东西吗?它似乎拿起了font-awesome.css,但不是为了基础?

这个问题是否类似于最新版本的 Bootstrap http://blog.getbootstrap.com/2015/06/15/bootstrap-3-3-5-released/

4

1 回答 1

1

所以,我应该先尝试这个,但与引导程序类似,我需要添加一个覆盖,特别是为基础。

    "overrides": {
      "foundation": {
        "main": [
        "css/foundation.css",
        "js/foundation.js"
        ]
      }
    }

谢谢,Sudheer 的建议。

于 2015-10-19T19:29:55.773 回答