Skip to content

Commit

Permalink
i18n(fr): Update deploy.mdx (#5686)
Browse files Browse the repository at this point in the history
Update file with PR #5217 #5305 #5572

Co-authored-by: Yan Thomas <[email protected]>
  • Loading branch information
McFlyPartages and yanthomasdev authored Dec 8, 2023
1 parent 9fa218b commit 0d5a655
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions src/content/docs/fr/guides/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Déployer votre Site Astro
description: Comment déployer votre site Astro sur le web.
i18nReady: true
---

import DeployGuidesNav from '~/components/DeployGuidesNav.astro';
import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'

Expand Down Expand Up @@ -60,9 +61,9 @@ Certains hébergeurs proposent leur propre interface de ligne de commande (CLI)
</Fragment>
</PackageManagerTabs>

2. Exécutez la CLI et suivez les instructions de connexion, mise en place etc.
1. Exécutez la CLI et suivez les instructions de connexion, mise en place etc.

3. Construisez votre site et déployez-le sur votre hébergeur
1. Construisez votre site et déployez-le sur votre hébergeur

De nombreux hébergeurs vont reconnaître votre projet en tant que site Astro, et devraient automatiquement appliquer la configuration appropriée pour construire et déployer votre site comme montré ci-dessous. (Dans le cas contraire, ces paramètres peuvent être modifiés.)

Expand All @@ -83,22 +84,22 @@ Vous pouvez aussi vouloir construire votre site localement pour le prévisualise
Exécutez la commande `npm run build` pour construire votre site Astro.

<PackageManagerTabs>
<Fragment slot="npm">
```shell
npm run build
```
</Fragment>
<Fragment slot="pnpm">
```shell
pnpm run build
```
</Fragment>
<Fragment slot="yarn">
```shell
yarn run build
```
</Fragment>
</PackageManagerTabs>
<Fragment slot="npm">
```shell
npm run build
```
</Fragment>
<Fragment slot="pnpm">
```shell
pnpm run build
```
</Fragment>
<Fragment slot="yarn">
```shell
yarn run build
```
</Fragment>
</PackageManagerTabs>

Par défaut, le dossier de build sera placé à `dist/`. Ce dossier peut être changé en utilisant [l'option `outDir`](/fr/reference/configuration-reference/#outdir).

Expand Down

0 comments on commit 0d5a655

Please sign in to comment.