Config.config_target
You're seeing just the macro
config_target
, go back to Config module for more information.
Returns the target this configuration file is executed on.
This is most often used to execute conditional code:
if config_target() == :host do
config :my_app, :debug, false
end