Magento 2静态内容部署不会编译更少的文件

时间:2018-08-15 12:01:26

标签: magento2

我正在开发模式和生产模式下基于空白主题(Magento 2.2.5)的主题,该主题较少的文件无法使用以下方式编译:

rm -R pub/static/*
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy 

图像可以正常加载,而不是CSS。使用冗长没有错误。唯一的方法是同时使用既开发又生产作为我的主题,我该怎么办?

2 个答案:

答案 0 :(得分:0)

Solving this issue is actually simple; just run the following command

Clear the var/cache and var/view_preprocessed directories by deleting the directory in

sudo rm -R pub/static/* sudo rm -R var/cache if you have to (sudo rm -R generated/code) sudo rm -R var/view_preprocessed sudo php bin/magento setup:upgrade sudo php bin/magento setup:static-content:deploy -f

答案 1 :(得分:0)

如果处于生产模式,请删除var / view_preprocessed和var / cache,运行CLI进行安装升级,然后部署静态内容。应该可以。