我有一个由多个捆绑包使用的布局,因此我将css文件放在 web / dashboard / css / 中。
当我使用简单方法时:
<link rel="stylesheet" href="{{ asset('dashboard/css/bootstrap.min.css') }}" />
应用了样式,我在源代码中获得了此HTML代码
<link rel="stylesheet" href="/boutique/web/dashboard/css/bootstrap.min.css" />
但是当我使用资产
时{% stylesheets 'dashboard/css/*' filter='cssrewrite' %}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
我在样式中有很多错误,我在源代码中有这个代码HTML
<link rel="stylesheet" href="/boutique/web/app_dev.php/css/ac0081b_part_1_ace-fonts_1.css" />
并且在mod prod 中,样式不起作用,我有HTML代码
<link rel="stylesheet" href="/boutique/web/css/ac0081b.css" />
正如我所说,css文件位于 web / dashboard / css /
答案 0 :(得分:0)
并且在mod prod中样式不起作用,我有HTML代码
您确定已部署资产吗?
// install the assets calling
app/console assets:install --env=prod
// dump your assets to real files
app/console assetic:dump --env=prod
我在样式中有很多错误,我在源代码中有这个代码HTML
我认为您看到的代码就是assetic works。
的方式