Grunt Wiredep 没有注入 Foundation css
Grunt Wiredep not injecting Foundation css
我通过 bower(bower 安装基础)在我的 bower_components 中安装了基础。
我的 Gruntfile.js 中也有 grunt-wiredep,如下所示:
wiredep: {
dev: {
src: ['<%= FILE_PATHS.client %>/index.html']
}
}
此外,我index.html
<!-- bower:css -->
<!-- endbower -->
在运行 grunt wiredep:dev之后,注入了foundation.js,但没有注入foundation.css或foundation.scss
我是否遗漏了 wiredep 配置的某些内容?好像是拿font-awesome.css,但是不是foundation?
这个问题和最新版的Bootstraphttp://blog.getbootstrap.com/2015/06/15/bootstrap-3-3-5-released/
类似吗
所以,我应该先尝试这个,但与 bootstrap 类似,我需要添加一个特别针对基础的覆盖。
"overrides": {
"foundation": {
"main": [
"css/foundation.css",
"js/foundation.js"
]
}
}
谢谢 Sudheer 的建议。
我通过 bower(bower 安装基础)在我的 bower_components 中安装了基础。
我的 Gruntfile.js 中也有 grunt-wiredep,如下所示:
wiredep: {
dev: {
src: ['<%= FILE_PATHS.client %>/index.html']
}
}
此外,我index.html
<!-- bower:css -->
<!-- endbower -->
在运行 grunt wiredep:dev之后,注入了foundation.js,但没有注入foundation.css或foundation.scss
我是否遗漏了 wiredep 配置的某些内容?好像是拿font-awesome.css,但是不是foundation?
这个问题和最新版的Bootstraphttp://blog.getbootstrap.com/2015/06/15/bootstrap-3-3-5-released/
类似吗所以,我应该先尝试这个,但与 bootstrap 类似,我需要添加一个特别针对基础的覆盖。
"overrides": {
"foundation": {
"main": [
"css/foundation.css",
"js/foundation.js"
]
}
}
谢谢 Sudheer 的建议。