You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add :raise_on_missing_only option to Plug.Static (#1286)
Add development-time validation to catch files that exist but aren't
declared in the :only list. When enabled, raises MissingPathInOnlyFilterError
with helpful guidance to either add the file to :only or use :only_matching
for prefix-based matching.
This prevents silent 404s when developers add static files (like favicon.svg)
but forget to update the static file configuration, which is a common trap
especially for digested files.
Part of the fix for: phoenixframework/phoenix#6203
0 commit comments