Magento 2, issue with getting "version" number in file paths
We can disable it in Admin:
Stores > Configuration > Advanced > Developer > Sign Static Files
Or we can change directly the value in core_config_data
:
insert into core_config_data (config_id, scope, scope_id, path, value) values (null, 'default', 0, 'dev/static/sign', 0);
Run the following commands and you will see static version number in the static URLs (CSS, JS etc.)
bin/magento config:set dev/static/sign 1
bin/magento cache:clean
bin/magento cache:flush
Hope it helps :)