avo-hq/avo#3657
When propshaft is used, rails assets:precompile exports all assets from app/assets to public/assets.
While some users may rely on these assets, the majority will not.
Document the method to exclude them.
Rails.application.config.assets.excluded_paths += [
Avo::Engine.root.join("app/assets/builds"),
Avo::Engine.root.join("app/assets/config"),
Avo::Engine.root.join("app/assets/stylesheets"),
Avo::Engine.root.join("app/assets/svgs")
]
avo-hq/avo#3657
When
propshaftis used,rails assets:precompileexports all assets fromapp/assetstopublic/assets.While some users may rely on these assets, the majority will not.
Document the method to exclude them.