The static view files deployment command enables you to write static files to the Magento file system when the Magento software is set for production mode. 1. Deploy all static contents
1 |
php bin/magento setup:static-content:deploy |
2. Deploy static content of locale AU
1 |
php bin/magento setup:static-content:deploy --language en_AU |
3. Deploy static content of Admin
1 |
php bin/magento setup:static-content:deploy --area adminhtml |
4. Deploy static content for frontend
1 |
php bin/magento setup:static-content:deploy --area frontend |
5.…