From 51365f0918c6b0e0b00b8e4e94eba002c36b76ca Mon Sep 17 00:00:00 2001 From: Aziz Abdullaev Date: Mon, 18 Sep 2023 02:06:02 -0400 Subject: [PATCH] add path to `endpoint.ex` in installation guide for Phoenix 1.7 Added clarification for newbies (like me) on where (endpoint) to enable Router Helpers so that kaffy works in Phoenix 1.7 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 89acb9e9..a29cd28c 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,7 @@ Follow the instructions at https://hexdocs.pm/phoenix_view/Phoenix.View.html You will also need to change `helpers: false` to `true` as shown in example below. ```elixir +# in your lib/you_app_web/endpoint.ex def router do quote do use Phoenix.Router, helpers: true