We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fa4d26 commit afbbd60Copy full SHA for afbbd60
āpackages/qwik-city/src/runtime/src/route-matcher.tsā
@@ -23,6 +23,10 @@ function matchRoutePart(
23
pathIdx: number,
24
pathLength: number
25
): PathParams | null {
26
+ if (path.startsWith('/build/')) {
27
+ return null;
28
+ }
29
+
30
let params: PathParams | null = null;
31
while (routeIdx < routeLength) {
32
const routeCh = route.charCodeAt(routeIdx++);
0 commit comments