Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Cloud Services
AWS
Azure
Google Cloud
Salesforce
Microsoft
SAP
July 17, 2023
If you are facing ruby on rails crash issue in your Rails 6 app, you can try following these steps to resolve it:
$ bundle install
Restart your Rails server to ensure the changes take effect.
Or You could use separate compiler for JS and CSS
Try using `yui` for css compile and `uglifier` for js compile
1. Add the following gems in your Gemfile to Compile javascripts and css in production
> gem 'uglifier' > gem 'yui-compressor'
2. And change the configuration to use the above gems to compile JS and CSS
> config.assets.css_compressor = :yui > config.assets.js_compressor = Uglifier.new(harmony: true)