Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/content/docs/es/reference/configuration-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,14 @@ Puedes personalizar el [código de estado de redirección](https://developer.moz
### output

<p>
**Tipo:** `'static' | 'server' | 'hybrid'`<br />
**Tipo:** `'static' | 'server'`<br />
**Por defecto:** `'static'`
</p>

Especifica el tipo de la compilación.

- `'static'`: Construye un sitio estático para ser implementado en cualquier host estático.
- `'server'`: Construye una aplicación que se implementará en un host compatible con SSR (renderizado en el servidor).
- `'hybrid'` : Construye un sitio estático con algunas páginas renderizadas en el lado del servidor.

```js
import { defineConfig } from 'astro/config';
Expand Down