Closed DonStanislas closed 1 year ago
Hi,
I have this code:
const routes = require('next-routes'); routes().add({ name: 'brand', pattern: "/search/:brand" });
<Link route="brand" params={{ brand: "alpha+romeo", sort: "mileage+asc" }}>Search</Link>
And my result is this: /search/alpha%2Bromeo?sort:mileage%2Basc
I would like to have this: /search/alpha+Bromeo?sort:mileage%2Basc
I would like the params not to be encoded. Or just the matched params. Can you help me ?
Thank you in advance,
Hi,
I have this code:
And my result is this: /search/alpha%2Bromeo?sort:mileage%2Basc
I would like to have this: /search/alpha+Bromeo?sort:mileage%2Basc
I would like the params not to be encoded. Or just the matched params. Can you help me ?
Thank you in advance,