During assets:precompile, I want to override config.threadsafe! (setting it to false), but otherwise I want to use all the config from production.rb. Is there an easy way to override a single property? I’d like to avoid duplicating production.rb into a new custom environment, since threadsafe! is the only property that’s different.
Update: you can’t “unset” threadsafe!, so I’ll probably just need to set config. allow_concurrency = false.
You can inherit environments: