From a9d5649bef6323163389b989cc84915d507d0d16 Mon Sep 17 00:00:00 2001 From: shibao Date: Fri, 14 Apr 2023 00:15:55 -0400 Subject: [PATCH] fix live reload glob --- config/dev.exs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/dev.exs b/config/dev.exs index 5d8d90d..0c5eb16 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -59,8 +59,7 @@ config :memex, MemexWeb.Endpoint, patterns: [ ~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$", ~r"priv/gettext/.*(po)$", - ~r"lib/memex_web/(live|views)/.*(ex)$", - ~r"lib/memex_web/templates/.*(eex)$" + ~r"lib/memex_web/*/.*(ex)$" ] ]