> For the complete documentation index, see [llms.txt](https://docs.aurelia.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aurelia.io/developer-guides/error-messages/router/aur3401.md).

# AUR3401

## Error Message

`AUR3401: Neither the route '%s' matched any configured route at '%s' nor a fallback is configured for the viewport '%s' - did you forget to add '%s' to the routes list of the route decorator of '%s'?`

## Description

This error occurs when the router cannot recognize the requested route and there is no fallback configured for the target viewport.

## Common Scenarios

* Navigating to a path that is not configured in the route table.
* Forgetting to register a routed component (or its routes) in the correct routing context.

## Solutions

* Add the missing route to your route configuration.
* Ensure the component that owns the routes is registered/active for the current navigation.
* Configure a fallback route for the viewport if desired.

## Troubleshooting

* Check the path you are navigating to and compare it with configured routes.
* Verify the component mentioned in the last `%s` has the route configured.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.aurelia.io/developer-guides/error-messages/router/aur3401.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
