我在目录
中引用我的css文件时遇到问题src\FirstLast\Bundle\AppBundle\Resources\public\css
使用资产命令? 我应该使用类似的东西:
{% stylesheets 'bundles/firstlastapp/css/*' filter="cssrewrite" %}
<link href="{{ asset_url }}" rel="stylesheet" type="text/css" />
{% endstylesheets %}
但这不起作用。 那个工作,但正如预期的cssrewrite失败:
@FirstLastAppBundle/Resources/public/css/*
任何提示?
VisioN给出的解决方案:
php app/console assets:install web --symlink should do the job.
答案 0 :(得分:0)
但这不起作用
到底发生了什么?
假设您处于prod模式,则应启动命令php app/console assetic:dump --env=prod
。它将一劳永逸地导出您的不同文件,而不是每次像开发模式一样呈现页面。