我正在开发模式和生产模式下基于空白主题(Magento 2.2.5)的主题,该主题较少的文件无法使用以下方式编译:
rm -R pub/static/*
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
图像可以正常加载,而不是CSS。使用冗长没有错误。唯一的方法是同时使用既开发又生产作为我的主题,我该怎么办?
答案 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进行安装升级,然后部署静态内容。应该可以。