assetic:dump不会转储所有资产

时间:2018-01-11 17:55:45

标签: php symfony assetic

我在生产中部署应用程序后运行以下3个命令:

php bin/console cache:warmup --env=prod
php bin/console assetic:dump --env=prod --no-debug
php bin/console cache:clear --env=prod --no-debug --no-warmup

后者输出以下内容:

enter image description here

但是在浏览器中没有任何内容加载:

enter image description here

此外,这是css文件夹的样子:

enter image description here

可能是什么问题?

2 个答案:

答案 0 :(得分:0)

在资产转储之前首先清除缓存: php bin/console cache:warmup --env=prod php bin/console cache:clear --env=prod --no-debug --no-warmup php bin/console assetic:dump --env=prod --no-debug

答案 1 :(得分:0)

由于某种原因,以下命令解决了该问题:

php bin/console assetic:dump --env=dev

不确定为什么因为它已经投入生产但是有效。