BunRouter is redirecting a POST request without a trailing to the GET Handler
I have the following code

If i send a POST request to /accounts/ then it works perfectly fine
But if send a POST request to /accounts then it redirects to GET /accounts
I have attached some screenshots below
As it can be seen that it works fine if i have a trailing slash

but if I remove the trailing slash I get this

Notice how I get method not allowed that is because I am getting redirected to a GET handler for /accounts/ which doesn't exists

POST Request to /accounts should get redirected to POST handler of /accounts/ instead of GET handler of /accounts
P.S: I am using bunrouter v1.0.20
BunRouter is redirecting a POST request without a trailing to the GET Handler
I have the following code

If i send a POST request to /accounts/ then it works perfectly fine

But if send a POST request to /accounts then it redirects to GET /accounts
I have attached some screenshots below
As it can be seen that it works fine if i have a trailing slash
but if I remove the trailing slash I get this

Notice how I get method not allowed that is because I am getting redirected to a GET handler for /accounts/ which doesn't exists

POST Request to /accounts should get redirected to POST handler of /accounts/ instead of GET handler of /accounts
P.S: I am using bunrouter v1.0.20