作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 symfony 项目中使用 BraincraftedBootstrapBundle。
我按照此页面上给出的步骤进行操作:http://bootstrap.braincrafted.com/getting-started.html
我收到以下错误:
# php app/console assetic:dump
Dumping all dev assets.
Debug mode is on.
[InvalidArgumentException]
There is no "less" filter.
assetic:dump [--forks="..."] [--watch] [--force] [--period="..."] [write_to]
...
assetic:
filters:
less:
node: /usr/sbin/node
node_paths: /usr/local/lib/node_modules
apply_to: "\.less$"
cssrewrite: ~
braincrafted_bootstrap:
less_filter: less
最佳答案
在 config.yml
中往上看一点你可能已经有一个 assetic
安装随附的声明。您需要将新配置添加到已定义的项目中。 (因为您的新声明将被忽略。)
在标准安装中,您可能有类似的东西
# Assetic Configuration
assetic:
debug: "%kernel.debug%"
use_controller: false
bundles: [ ]
#java: /usr/bin/java
filters:
cssrewrite: ~
#closure:
# jar: "%kernel.root_dir%/Resources/java/compiler.jar"
#yui_css:
# jar: "%kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar"
# Assetic Configuration
assetic:
debug: "%kernel.debug%"
use_controller: false
bundles: [ ]
#java: /usr/bin/java
filters:
cssrewrite: ~
#closure:
# jar: "%kernel.root_dir%/Resources/java/compiler.jar"
#yui_css:
# jar: "%kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar"
less:
node: /usr/local/bin/node
node_paths: [/usr/local/lib/node_modules]
apply_to: "\.less$"
cssrewrite: ~
关于php - Symfony2 BootstrapBundle : There is no "less" filter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29799387/
我想在 symfony 项目中使用 BraincraftedBootstrapBundle。 我按照此页面上给出的步骤进行操作:http://bootstrap.braincrafted.com/ge
我是一名优秀的程序员,十分优秀!