Chris Lusted
Chris Lusted
Did anyone get a fix for this?
I'm also wondering the same thing, have you had any luck @viktorstrate?
How do other people solve this issue? For reference this seems to work for me. I just create a deface_precompile.rake file and override the precompile rake task like this: ```...
@arturtr something like this? ``` namespace :deface do desc 'Precompile deface templates' task :precompile do on roles(:app) do within release_path do with rails_env: fetch(:rails_env) do execute :rake, 'deface:precompile' end end...