Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/content/docs/fr/recipes/making-toolbar-apps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Les applications de la barre d'outils de développement peuvent être ajoutées
- tsconfig.json
</FileTree>

2. Dans `my-integration.ts`, ajoutez le code suivant pour fournir à la fois le nom de votre intégration et [la fonction `addDevToolbarApp()`](/fr/reference/dev-toolbar-app-reference/#configuration-de-lintégration-des-applications-dans-la-barre-doutils) requise pour ajouter votre application de barre d'outils avec le hook `astro:config:setup` :
2. Dans `my-integration.ts`, ajoutez le code suivant pour fournir à la fois le nom de votre intégration et [la fonction `addDevToolbarApp()`](/fr/reference/dev-toolbar-app-reference/#configuration-dune-intégration-dapplications-pour-la-barre-doutils) requise pour ajouter votre application de barre d'outils avec le hook `astro:config:setup` :

```ts title="my-toolbar-app/my-integration.ts" "'astro:config:setup'" "hooks" "addDevToolbarApp"
import { fileURLToPath } from 'node:url';
Expand Down
Loading