[Solved] How do I fix Rails RuntimeError Current ExectJ doesn’t support ES5?
The main problem was in your Gemfile here gem ‘therubyracer’, platforms: :ruby gem ‘mini_racer’, platforms: :ruby You had two racer type gems, you only need one. You should just use gem ‘mini_racer’ and get rid of therubyracer. Do that and run bundle install. You will also need to clean up merge conflict stuff left in … Read more