You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting these messages while trying to compile with elixir 1.13.4.
warning: use Mix.Config is deprecated. Use the Config module instead
config/config.exs:8
warning: use Mix.Config is deprecated. Use the Config module instead
config/dev.exs:1
It's simple to remove both fo those by replacing those use Mix.Config statements with import Config
The text was updated successfully, but these errors were encountered:
Getting these messages while trying to compile with elixir 1.13.4.
It's simple to remove both fo those by replacing those
use Mix.Config
statements withimport Config
The text was updated successfully, but these errors were encountered: