We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Actually gem working well, created non digested assets in the path.
Problem comes when asset_sync gem reading rails 4 manifest file which is not include "non-digested" stuff.
solved easily with setting manifest to false in the AssetSync configuration (so it read files after precompile), eg:
AssetSync.configure do |config| config.manifest = false end
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
No branches or pull requests
Actually gem working well, created non digested assets in the path.
Problem comes when asset_sync gem reading rails 4 manifest file which is not include "non-digested" stuff.
solved easily with setting manifest to false in the AssetSync configuration (so it read files after precompile), eg:
The text was updated successfully, but these errors were encountered: