DEV Community

Patchy from FireHydrant for FireHydrant

Posted on

Rails without Webpacker

We recently removed webpacker from our Rails 5 application. While it was a great way to bootstrap a new Rails app with a significant amount of Javascript we encountered some serious performance problems that we felt really impacted our productivity. We build our application images after every git push and we’d like to be able to deploy them quickly.

We started out using webpacker to build our Javascript bundles and eventually switched to using webpack directly after seeing our asset build times exceed eight minutes. The end result was a 75% reduction in time spent building assets. This is a summary of our findings and the steps you can take to use vanilla webpack in your Rails application.

Read the full post here.

This post was originally published on the FireHydrant Blog on May 28, 2019 by Robert Ross.

Top comments (0)