isRoute404or500() — astro Function Reference
Architecture documentation for the isRoute404or500() function in match.ts from the astro codebase.
Entity Profile
Dependency Diagram
graph TD 437cc418_b911_8850_b316_5d1dc09edcb2["isRoute404or500()"] 0b4969b2_7e25_9c4a_3b7f_911a988f8209["match.ts"] 437cc418_b911_8850_b316_5d1dc09edcb2 -->|defined in| 0b4969b2_7e25_9c4a_3b7f_911a988f8209 12e5c229_7f91_9337_6c02_04d59827df66["isRoute404()"] 437cc418_b911_8850_b316_5d1dc09edcb2 -->|calls| 12e5c229_7f91_9337_6c02_04d59827df66 3093e2a4_0d13_805a_f2b0_1d0ad1ede0bd["isRoute500()"] 437cc418_b911_8850_b316_5d1dc09edcb2 -->|calls| 3093e2a4_0d13_805a_f2b0_1d0ad1ede0bd style 437cc418_b911_8850_b316_5d1dc09edcb2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/astro/src/core/routing/match.ts lines 38–40
export function isRoute404or500(route: RouteData): boolean {
return isRoute404(route.route) || isRoute500(route.route);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does isRoute404or500() do?
isRoute404or500() is a function in the astro codebase, defined in packages/astro/src/core/routing/match.ts.
Where is isRoute404or500() defined?
isRoute404or500() is defined in packages/astro/src/core/routing/match.ts at line 38.
What does isRoute404or500() call?
isRoute404or500() calls 2 function(s): isRoute404, isRoute500.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free