Symfony2资产:安装更改参考



我正在尝试使用:

{% stylesheets '@Bundle/Resources/public/css/style.css' filter='rename_filter' %}
    <link rel="stylesheet" type="text/css" href="{{ asset_url }}">
{% endstylesheets %}

运行assets后:安装对css文件的引用已更改为/css/40ae858_style_1.css。有什么方法可以使用原始引用吗?至少当env=dev时。

我在开发时没有使用assetic:dump,但将在生产服务器上使用它。

您的近在那里,请使用。

   {% stylesheets 'bundles/yourbundlename/css/*' filter='cssrewrite' %}
         <link rel="stylesheet" href="{{ asset_url }}" />
   {% endstylesheets %}

直接访问{{asset('/bundles/yourbundlename/css/thefilename.css')}}

相关内容

  • 没有找到相关文章

最新更新