Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n(de): update guides/deploy/edgio.mdx #10296

Merged
merged 2 commits into from
Dec 16, 2024
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
14 changes: 10 additions & 4 deletions src/content/docs/de/guides/deploy/edgio.mdx
Original file line number Diff line number Diff line change
@@ -1,31 +1,36 @@
---
title: Veröffentliche deine Astro-Website auf Edgio
description: Wie du deine Astro-Website auf Edgio im Internet veröffentlichst.
sidebar:
label: Edgio
type: deploy
i18nReady: true
---

import { Steps } from '@astrojs/starlight/components';

Du kannst dein Astro-Projekt auf [Edgio](https://www.edg.io/) veröffentlichen, einer Edge- und CDN-Plattform zum Bereitstellen, Schützen und Beschleunigen von Websites und APIs.

:::tip
Schau dir [die Astro-Anleitung in Edgios Dokumentation](https://docs.edg.io/guides/astro) an!
:::

## So funktioniert die Veröffentlichung
## Wie man veröffentlicht

<Steps>
1. Installiere die Kommandozeilen&shy;schnittstelle [Edgio CLI](https://docs.edg.io/guides/cli) global über dein Terminal, falls du das noch nicht getan hast.

```bash
npm install -g @edgio/cli
```

2. Füge Edgio deiner Astro-Seite hinzu
2. Füge Edgio deiner Astro-Seite hinzu.

```bash
edgio init
```

3. (Optional) Aktiviere das serverseitige Rendering
3. (Optional) Aktiviere das serverseitige Rendering.

Nachdem du [@astrojs/node mit Astro](/de/guides/integrations-guide/node/) eingerichtet hast, gibst du den Pfad zur Serverdatei in der Datei `edgio.config.js` wie folgt an:

Expand All @@ -42,8 +47,9 @@ Schau dir [die Astro-Anleitung in Edgios Dokumentation](https://docs.edg.io/guid
};
```

4. Veröffentliche deine Website auf Edgio
4. Veröffentliche deine Website auf Edgio.

```bash
edgio deploy
```
</Steps>
Loading