Hey there! I'm currently facing a problem with my application. In my Gemfile, I've added the following code:
group :production, :staging do
gem 'rails_12factor'
end
Additionally, in my stylesheet named mytest.css.scss, I've included images using the code below:
.abc{background: image-url('/assets/mobile/phone.png');}
Furthermore, in my production.rb file, I have made these configurations:
config.serve_static_assets = true
config.assets.compile = true
Despite running rake assets:precompile in Heroku's bash terminal, the images, stylesheets, and JavaScript files are still not loading. Can someone provide me with guidance on how to resolve this issue? Your help would be greatly appreciated!