0
我正在嘗試使用Assetic來包含我的基礎CSS和js資產,這些資產並未捆綁在一起。他們位於MySymfonyApp/app/Resources/public/css/
和MySymfonyApp/app/Resources/public/js/
。包括不在捆綁中的symfony基礎資產
我在base.html.twig
模板下面,但我發現404
{% stylesheets '%kernel.root_dir%/Resources/public/css/*' %}
<link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
{% endstylesheets %}
{% javascripts
'%kernel.root_dir%/Resources/public/js/jQuery.js'
'%kernel.root_dir%/Resources/public/js/*' %}
<script src="{{ asset_url }}"></script>
{% endjavascripts %}
我也試着用同樣的結果如下。
{% stylesheets '../app/Resources/public/css/*' %}
<link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
{% endstylesheets %}
我如何引用未綁定的資產?