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
I would expect that Avo::Engine.root.join("app/assets/builds") (for example) should automatically be excluded when the parent directory of Avo::Engine.root.join("app/assets") is excluded.
The text was updated successfully, but these errors were encountered:
I'm trying to exclude some assets provided by the
avo
gem, and I've added this toconfig/initializers/assets.rb
:But I'm still getting assets from
avo
inpublic/assets/avo
when I precompile assets.If I inspect
Rails.application.config.assets.paths
in a console I can see that there are paths for severalavo
asset directories:If I explicitly add each of those sub directories to
excluded_paths
then it works to exclude theavo
assets.I would expect that
Avo::Engine.root.join("app/assets/builds")
(for example) should automatically be excluded when the parent directory ofAvo::Engine.root.join("app/assets")
is excluded.The text was updated successfully, but these errors were encountered: