我正在使用Symfony2和Assetic。
资产在dev上运行正常(debug = true),但是当我为prod(debug = false)运行转储时,它没有合并bootstrap.css和bootstrap-responsive.css。
有什么想法? TKX
答案 0 :(得分:0)
为了暂时解决问题,我需要将bootstrap.css放在树枝外({%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 %}