Skip to content
/ docs Public
forked from withastro/docs

Commit

Permalink
i18n(fr): Update guides/cms/ghost from withastro#8518
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Bonnet <[email protected]>
  • Loading branch information
thomasbnt committed Jun 25, 2024
1 parent df3cbf9 commit 17ec50d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/content/docs/fr/guides/cms/ghost.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,22 +58,25 @@ Votre répertoire racine doit maintenant contenir ces nouveaux fichiers :

### Installation des dépendances

Pour se connecter à Ghost, installez l'API de contenu officielle [`@tryghost/content-api`](https://www.npmjs.com/package/@tryghost/content-api) en utilisant la commande ci-dessous pour votre gestionnaire de paquets préféré :
Pour se connecter à Ghost, installez l'API de contenu officielle [`@tryghost/content-api`](https://www.npmjs.com/package/@tryghost/content-api) en utilisant la commande ci-dessous pour votre gestionnaire de paquets préféré et, éventuellement, un paquet utile contenant des définitions de types si vous utilisez TypeScript :

<PackageManagerTabs>
<Fragment slot="npm">
```shell
npm install @tryghost/content-api
npm install --save @types/tryghost__content-api
```
</Fragment>
<Fragment slot="pnpm">
```shell
pnpm add @tryghost/content-api
pnpm add --save-dev @types/tryghost__content-api
```
</Fragment>
<Fragment slot="yarn">
```shell
yarn add @tryghost/content-api
yarn add --dev @types/tryghost__content-api
```
</Fragment>
</PackageManagerTabs>
Expand Down

0 comments on commit 17ec50d

Please sign in to comment.