You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depending on how the application is deployed to production, the CSSBundling compilation step can fail silently. This results in the system returning a 500 error due to the public/assets/application-[fingerprint].css not existing.
According to the CSSBundling docs you need to add a .gitkeep file to the app/assets/builds/ directory so that it exists when deploying the application.
There is currently an exception in the .gitignore for a app/assets/builds/.keep but the file does not exist in the directory
The text was updated successfully, but these errors were encountered:
Depending on how the application is deployed to production, the CSSBundling compilation step can fail silently. This results in the system returning a 500 error due to the
public/assets/application-[fingerprint].css
not existing.According to the CSSBundling docs you need to add a
.gitkeep
file to theapp/assets/builds/
directory so that it exists when deploying the application.There is currently an exception in the .gitignore for a
app/assets/builds/.keep
but the file does not exist in the directoryThe text was updated successfully, but these errors were encountered: