安装和配置 sass 和指南针以与基础一起使用
install and configure sass and compass to use with the foundation
安装好的foundation 5只是下载和复制文件
现在继续veriaveis 需要fondation 有一个.scss 文件但是在我的Symfony2 项目中没有任何东西可以使用它们
config.yml
filters:
cssrewrite: ~
compass: ~
sass: ~
base.html.twig
{% stylesheets "bundles/delivveweb/scss/*" filter="compass" %}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
他正在生成 css 文件,但是当您打开该文件时包含以下错误:
[exception] 500 | Internal Server Error | Assetic\Exception\FilterException
[message] An error occurred while running:
'/usr/bin/ruby' '/usr/bin/compass' 'compile' '/tmp' '--boring' '--config' '/tmp/assetic_compassl2wvYW' '--sass-dir' '' '--css-dir' '' '/tmp/assetic_compassH8m6D9.scss'
Error Output:
/usr/bin/ruby: No such file or directory -- /usr/bin/compass (LoadError)
我希望有人能帮我安装它,如果可以使用 composer
在控制台中输入:$whereis compass
或 which compass
示例输出:- compass: /usr/local/bin/compass
现在 config.yml:
filters:
compass:
bin: /usr/local/bin/compass
安装好的foundation 5只是下载和复制文件
现在继续veriaveis 需要fondation 有一个.scss 文件但是在我的Symfony2 项目中没有任何东西可以使用它们
config.yml
filters:
cssrewrite: ~
compass: ~
sass: ~
base.html.twig
{% stylesheets "bundles/delivveweb/scss/*" filter="compass" %}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
他正在生成 css 文件,但是当您打开该文件时包含以下错误:
[exception] 500 | Internal Server Error | Assetic\Exception\FilterException
[message] An error occurred while running:
'/usr/bin/ruby' '/usr/bin/compass' 'compile' '/tmp' '--boring' '--config' '/tmp/assetic_compassl2wvYW' '--sass-dir' '' '--css-dir' '' '/tmp/assetic_compassH8m6D9.scss'
Error Output:
/usr/bin/ruby: No such file or directory -- /usr/bin/compass (LoadError)
我希望有人能帮我安装它,如果可以使用 composer
在控制台中输入:$whereis compass
或 which compass
示例输出:- compass: /usr/local/bin/compass
现在 config.yml:
filters:
compass:
bin: /usr/local/bin/compass