1
1
import { createRouter as createRadixRouter , toRouteMatcher } from 'radix3'
2
2
import { defu } from 'defu'
3
- import { withoutBase , withoutTrailingSlash } from 'ufo'
3
+ import { parseURL , withoutBase , withoutTrailingSlash } from 'ufo'
4
4
import type { NitroRouteRules } from 'nitropack'
5
5
import { useRuntimeConfig } from '#imports'
6
6
@@ -14,14 +14,16 @@ export function createNitroRouteRuleMatcher() {
14
14
createRadixRouter ( {
15
15
routes : Object . fromEntries (
16
16
Object . entries ( nitro ?. routeRules || { } )
17
- . map ( ( [ path , rules ] ) => [ withoutTrailingSlash ( path ) , rules ] ) ,
17
+ . map ( ( [ path , rules ] ) => [ path === '/' ? path : withoutTrailingSlash ( path ) , rules ] ) ,
18
18
) ,
19
19
} ) ,
20
20
)
21
- return ( path : string ) => {
21
+ return ( pathOrUrl : string ) => {
22
+ const path = pathOrUrl [ 0 ] === '/' ? pathOrUrl : parseURL ( pathOrUrl , app . baseURL ) . pathname
23
+ const pathWithoutQuery = withoutQuery ( path )
22
24
return defu ( { } , ..._routeRulesMatcher . matchAll (
23
25
// radix3 does not support trailing slashes
24
- withoutBase ( withoutTrailingSlash ( withoutQuery ( path ) ) , app . baseURL ) ,
26
+ withoutBase ( pathWithoutQuery === '/' ? pathWithoutQuery : withoutTrailingSlash ( pathWithoutQuery ) , app . baseURL ) ,
25
27
) . reverse ( ) ) as NitroRouteRules
26
28
}
27
29
}
0 commit comments