rsnext/test/integration/rewrites-destination-query-array/next.config.js
Alexander f8269fd4a6
Fix: (rewrites) incorrect parsing of destination query (#26619)
fixes #26609

## Bug

- [x]  Related issues linked using fixes #number
- [x]   Integration tests added

## Documentation / Examples

- [x]  Make sure the linting passes
2021-07-06 21:20:53 +00:00

10 lines
149 B
JavaScript

module.exports = {
rewrites() {
return [
{
source: '/some-page',
destination: '/?items=1&items=2',
},
]
},
}