fix cors
All checks were successful
Build and Publish / build-release (push) Successful in 1m27s

This commit is contained in:
2026-04-16 16:09:10 -05:00
parent 671c6a33da
commit 8782f957b0
3 changed files with 8 additions and 1 deletions

View File

@@ -20,6 +20,6 @@ defmodule ProviderServiceWeb.Endpoint do
plug(Plug.MethodOverride)
plug(Plug.Head)
plug(Plug.Session, @session_options)
plug(CORSPlug, origin: ["http://localhost:3000"])
plug(CORSPlug)
plug(ProviderServiceWeb.Router)
end