From f0473d348c27b20aaa03b5f27b932751a9714bb3 Mon Sep 17 00:00:00 2001 From: Robert Fletcher Date: Tue, 3 Dec 2024 20:29:36 -0800 Subject: [PATCH] Rails8: don't compile assets in production (#1254) --- config/environments/production.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/environments/production.rb b/config/environments/production.rb index 04620ef23..1f6af775f 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -82,4 +82,6 @@ # { exclude: ->(request) { request.path == "/up" } } config.good_job.execution_mode = :async + + config.assets.compile = false end