In this blog post, we will remove version number in file paths in Magento2. We can disable the admin setting in below path: Stores > Configuration > Advanced > Developer > Sign Static Files OR We can change this setting from directly core_config_data database table by running following query: INSERT INTO core_config_data (config_id, scope, scope_id, path, value) VALUES (null, 'default', 0, 'dev/static/sign', 0); Hope this helps you guys!