Skip to content

Commit

Permalink
i18n(es): Translate middleware-cant-be-loaded.mdx (withastro#5841)
Browse files Browse the repository at this point in the history
  • Loading branch information
Waxer59 authored Dec 19, 2023
1 parent 295d77e commit dfc0955
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/content/docs/es/reference/errors/middleware-cant-be-loaded.mdx
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"
});
```

0 comments on commit dfc0955

Please sign in to comment.