Skip to content

Commit c1aaba9

Browse files
committedSep 20, 2024
fix: root path / not being matched with route rules
Fixes #362
1 parent be5935e commit c1aaba9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎src/runtime/nitro/kit.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createRouter as createRadixRouter, toRouteMatcher } from 'radix3'
22
import { defu } from 'defu'
3-
import { withoutBase, withoutTrailingSlash } from 'ufo'
3+
import { parseURL, withoutBase, withoutTrailingSlash } from 'ufo'
44
import type { NitroRouteRules } from 'nitropack'
55
import { useRuntimeConfig } from '#imports'
66

@@ -14,14 +14,16 @@ export function createNitroRouteRuleMatcher() {
1414
createRadixRouter({
1515
routes: Object.fromEntries(
1616
Object.entries(nitro?.routeRules || {})
17-
.map(([path, rules]) => [withoutTrailingSlash(path), rules]),
17+
.map(([path, rules]) => [path === '/' ? path : withoutTrailingSlash(path), rules]),
1818
),
1919
}),
2020
)
21-
return (path: string) => {
21+
return (pathOrUrl: string) => {
22+
const path = pathOrUrl[0] === '/' ? pathOrUrl : parseURL(pathOrUrl, app.baseURL).pathname
23+
const pathWithoutQuery = withoutQuery(path)
2224
return defu({}, ..._routeRulesMatcher.matchAll(
2325
// radix3 does not support trailing slashes
24-
withoutBase(withoutTrailingSlash(withoutQuery(path)), app.baseURL),
26+
withoutBase(pathWithoutQuery === '/' ? pathWithoutQuery : withoutTrailingSlash(pathWithoutQuery), app.baseURL),
2527
).reverse()) as NitroRouteRules
2628
}
2729
}

0 commit comments

Comments
 (0)
Please sign in to comment.