Files
growstuff/config.ru
google-labs-jules[bot] b029c65692 feat: Add and configure rack-deflater
This change adds the `rack-deflater` gem to the project and configures the application to use it. This will enable gzip compression for HTTP responses, improving performance by reducing the size of the data sent to the client.
2025-12-01 13:57:52 +00:00

9 lines
198 B
Ruby

# frozen_string_literal: true
# This file is used by Rack-based servers to start the application.
require File.expand_path('config/environment', __dir__)
use Rack::Deflater
run Rails.application