From af4bbd723add4cca30242c82786b17be0bdd76dc Mon Sep 17 00:00:00 2001 From: Martin Frost Date: Tue, 10 May 2022 19:49:49 +0200 Subject: [PATCH] Migrate from Mix.Config to Config --- config/config.exs | 2 +- config/dev.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.exs b/config/config.exs index 136603b..3178df9 100644 --- a/config/config.exs +++ b/config/config.exs @@ -1,6 +1,6 @@ # This file is responsible for configuring your application # and its dependencies with the aid of the Mix.Config module. -use Mix.Config +import Config # This configuration is loaded before any dependency and is restricted # to this project. If another project depends on this project, this diff --git a/config/dev.exs b/config/dev.exs index def509a..17f197d 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -1,3 +1,3 @@ -use Mix.Config +import Config config :ex_doc, :markdown_processor, ExDoc.Markdown.Pandoc