Mix.Project.build_path
You're seeing just the function
build_path
, go back to Mix.Project module for more information.
Specs
Returns the build path for the given project.
If no configuration is given, the one for the current project is used.
The returned path will be expanded.
Examples
Mix.Project.build_path()
#=> "/path/to/project/_build/shared"
If :build_per_environment
is set to true
, it will create a new build per
environment:
Mix.env()
#=> :dev
Mix.Project.build_path()
#=> "/path/to/project/_build/dev"