diff --git a/src/content/docs/fr/recipes/tailwind-rendered-markdown.mdx b/src/content/docs/fr/recipes/tailwind-rendered-markdown.mdx index 497d562e03336..b38ed4c6fcc42 100644 --- a/src/content/docs/fr/recipes/tailwind-rendered-markdown.mdx +++ b/src/content/docs/fr/recipes/tailwind-rendered-markdown.mdx @@ -45,7 +45,6 @@ Ensuite, ajoutez le paquet en tant que plugin dans votre fichier de configuratio ```diff lang="js" // tailwind.config.js /** @type {import('tailwindcss').Config} */ - export default { theme: { // ... @@ -88,8 +87,8 @@ export default { ```astro title="src/pages/index.astro" --- - import Prose from "../components/Prose.astro"; - import Layout from "../layouts/Layout.astro"; + import Prose from '../components/Prose.astro'; + import Layout from '../layouts/Layout.astro'; import { getEntry } from 'astro:content'; const entry = await getEntry('collection', 'entry');