Closed rdj closed 6 months ago
Thanks! I'm taking a look!
Yes, I'm experiencing the same issue.
As a quick workaround, I added a few lines to the .htacess
file so all missing .min.js
files are read from corresponding .js
versions.
<IfModule mod_rewrite.c>
RewriteEngine On
# Check if the request is for a .min.js file and it does not exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^/wp-content/themes/storefront/assets/js/(.*)\.min\.js$
# Rewrite to the corresponding .js file
RewriteRule ^wp-content/themes/storefront/assets/js/(.*)\.min\.js$ /wp-content/themes/storefront/assets/js/$1.js [L]
</IfModule>
It also won't cause any problems when this issue will be fixed π
@wiesys Can you check if this build works correctly for you?
Yes, @gigitux looks like it works β atleast no missing .min.js
files in the logs π Thank you! ππ»
Thanks for opening the issue! I deployed a new version that contains the min.js
files! I'm going to close the issue!
Seeing 404 in my production environment which updated to Storefront 4.5.6.
Downloaded the 4.5.5 and 4.5.6 zip files locally, and the minified files are simply missing from the 4.5.6 zip: