Closed dmitrii-fediuk closed 3 years ago
The issue was caused by someone who did not deploy the static content for the requested locale (fr_FR
).
The proper static content deployment script:
bin/magento maintenance:enable
bin/magento cache:clean
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US en_CA es_ES fr_FR pt_BR zh_Hans_CN
bin/magento setup:static-content:deploy \
--area frontend \
--theme MageSuper/magestylish \
-f en_US en_CA es_ES fr_FR pt_BR zh_Hans_CN
bin/magento cache:clean
bin/magento maintenance:disable