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
When I have 2 http handlers with a common base path the first (shorter) handler is recompiled when there are changes made to the second.
Example:
Say I have the following http handlers:
src/http/get-api-v1-users/index.ts
src/http/get-api-v1-users-000id/index.ts
When I make a change to get-api-v1-users-000id, get-api-v1-users is recompiled instead. It looks like this line is matching the first handler because they share a common filename prefix.
Hopefully, this is helpful...
The text was updated successfully, but these errors were encountered:
When I have 2 http handlers with a common base path the first (shorter) handler is recompiled when there are changes made to the second.
Example:
Say I have the following http handlers:
When I make a change to
get-api-v1-users-000id
,get-api-v1-users
is recompiled instead. It looks like this line is matching the first handler because they share a common filename prefix.Hopefully, this is helpful...
The text was updated successfully, but these errors were encountered: