0

我正在使用 Symfony2 和 Assetic。

资产在 dev 上运行良好(debug = true),但是当我为 prod 运行转储(debug = false)时,它没有合并 bootstrap.css 和 bootstrap-responsive.css。

有什么想法吗?Tkx

4

1 回答 1

0

为了临时解决问题,我需要将 bootstrap.css 放在 twig 之外({% stylesheets),例如:

 /* Instead of: */
{% stylesheets 'bundles/foobar/css/*' %}
<link rel="stylesheet" href="{{ asset_url }}">
{% endstylesheets %}


/* I am doing: */
<link rel="stylesheet" href='/bundles/foobar/css/bootstrap.css'>
{% stylesheets
'bundles/foobar/css/bootstrap-responsive.css'
'bundles/foobar/css/chosen.css'
'bundles/foobar/css/custom.css'
%}
<link rel="stylesheet" href="{{ asset_url }}">
{% endstylesheets %}
于 2013-08-01T00:32:47.237 回答