- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2022
12:57 PM
02-20-2022
12:57 PM
Magento 2.3.1 Merged css and js option not showing.
Hi,
In Magento 2.3.1 Merged css and js option not showing. Because developer option is not showing.
From where I can see it?
Thanks
Labels:
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2022
03:41 AM
02-21-2022
03:41 AM
Re: Magento 2.3.1 Merged css and js option not showing.
You need to set the store in developer mode.
You can use the below command:
php bin/magento deploy:mode:set developer
or else you can use following commands for production mode to minify and merge the CSS/JS
php bin/magento config:set dev/css/merge_css_files 1 php bin/magento config:set dev/css/minify_files 1
php bin/magento config:set dev/js/merge_files 1 php bin/magento config:set dev/js/minify_files 1
Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.
200+ Magento 2 Extensions for Enhanced Shopping Experience.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2022
06:08 AM
02-21-2022
06:08 AM
Re: Magento 2.3.1 Merged css and js option not showing.
Hi,
Thanks for the reply, But I have don't rights to run command line code.
So, how can I do it from Admin panel ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2022
08:08 PM
02-23-2022
08:08 PM
Re: Magento 2.3.1 Merged css and js option not showing.
If You have the database access then open the core_config_data table and find dev/css/merge_css_files , dev/css/minify_files , dev/js/merge_files , dev/js/minify_files
in path field set values to 1.
Or from app/etc/env.php file, change the mode:
MAGE_MODE to developer
Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.
200+ Magento 2 Extensions for Enhanced Shopping Experience.