class ViteRuby::Config

def config_from_env

Internal: Extracts the configuration options provided as env vars.
def config_from_env
  CONFIGURABLE_WITH_ENV.each_with_object({}) do |option, env_vars|
    if value = option_from_env(option)
      env_vars[option] = value
    end
  end
end