Skip to content

Instantly share code, notes, and snippets.

@molotovbliss
Last active October 2, 2017 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save molotovbliss/763632c1723977667045613d381a2b12 to your computer and use it in GitHub Desktop.
Save molotovbliss/763632c1723977667045613d381a2b12 to your computer and use it in GitHub Desktop.
Disable CSS/JS Merge/Minify/Static Signing on M2 via SQL
-- review
select * from core_config_data where path like 'dev/%';
-- update all
update core_config_data set value = '0' where path = 'dev/css/merge_css_files';
update core_config_data set value = '0' where path = 'dev/css/minify_files';
update core_config_data set value = '0' where path = 'dev/js/merge_files';
update core_config_data set value = '0' where path = 'dev/js/enable_js_bundling';
update core_config_data set value = '0' where path = 'dev/js/minify_files';
UPDATE core_config_data SET value = '0' WHERE path = 'dev/static/sign';
-- confirm
select * from core_config_data where path like 'dev/%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment