From 44b9c6cabaa2efbdaa29af810c4504e9dff98597 Mon Sep 17 00:00:00 2001 From: Steffen Beyer Date: Wed, 27 May 2026 16:19:13 +0200 Subject: [PATCH] chore: quiet dev Ash domain warnings Suppress Ash domain config inclusion warnings while compiling the host as a dev-only plugin dependency. --- config/dev.exs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/dev.exs b/config/dev.exs index becde76..a87d88a 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -1 +1,5 @@ import Config + +# The host is a compile-only dependency in dev. Suppress host Ash domain +# config inclusion warnings while compiling host modules as a dependency. +config :ash, :validate_domain_config_inclusion?, false