Skip to main content

How to enable or disable the static content signing?

in case we want to change this configuration

«Stores» → «Configuration» 3 → «Advanced» → «Developer» → «Static Files Settings» → «Sign Static Files»

 

we can execute this query

disable

UPDATE core_config_data SET value = 0 WHERE path = 'dev/static/sign'

enable

 

UPDATE core_config_data SET value = 1 WHERE path = 'dev/static/sign'