forked from withastro/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i18n(es): Translate
middleware-cant-be-loaded.mdx
(withastro#5841)
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/content/docs/es/reference/errors/middleware-cant-be-loaded.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: Can't load the middleware. | ||
i18nReady: true | ||
githubURL: https://github.com/withastro/astro/blob/main/packages/astro/src/core/errors/errors-data.ts | ||
--- | ||
|
||
> **MiddlewareCantBeLoaded**: El middleware lanzó un error mientras Astro intentaba cargarlo. | ||
## ¿Qué salió mal? | ||
Lanzado en modo desarrollo cuando el middleware lanza un error al intentar cargarlo. | ||
|
||
Por ejemplo: | ||
```ts | ||
import {defineMiddleware} from "astro:middleware"; | ||
throw new Error("Error lanzado al cargar el middleware.") | ||
export const onRequest = defineMiddleware(() => { | ||
return "string" | ||
}); | ||
``` |