Even if config.assets.digest = false is set Sprockets 3.0 keep adding .self. to all static files: application.css becomes applicatio
config.assets.digest = false
.self.
application.css
applicatio
Downgrading sprockets worked for me. Add the following to your Gemfile
Gemfile
gem 'sprockets', '2.11.0'
and run
bundle update sprockets