diff options
author | Mark Felder <feld@feld.me> | 2021-05-20 13:55:37 -0500 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2021-05-20 14:02:58 -0500 |
commit | fe40f6f2910967609f7aa952d69981cadc47372c (patch) | |
tree | 5402ca123349966c3b17a50392c421c8c41e7874 /config/prod.exs | |
parent | 8e9f032f25251d910b59c55226d10a305bad3cba (diff) | |
download | pleroma-fe40f6f2910967609f7aa952d69981cadc47372c.tar.gz |
Switch from the deprecated "use Mix.config" to "import Config"
Diffstat (limited to 'config/prod.exs')
-rw-r--r-- | config/prod.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/prod.exs b/config/prod.exs index 0e151000b..968f596e0 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config # For production, we often load configuration from external # sources, such as your system environment. For this reason, |