Casey Li
Results
2
comments of
Casey Li
I ran into this same issue and I think I can explain why changing the order of the association works, but I don't know what the long term fix is....
Modifying the default rails definition for assets.precompile in production.rb did it for me: ``` config.assets.precompile = [ Proc.new{ |path| !File.extname(path).in?(['.js', '.css', '.map']) }, /(?:\/|\\|\A)application\.(css|js)$/] ``` I also had a separate...