diff options
author | 2025-01-29 22:39:28 +0100 | |
---|---|---|
committer | 2025-01-29 22:39:28 +0100 | |
commit | 23881e716457c358c8adf929a62f52237cef27cd (patch) | |
tree | 8069e24216289914c182b4a8a43785f973ba7e25 | |
parent | 61ef2d9179f543cc932f98e3e0e91586f7341510 (diff) | |
download | astro-23881e716457c358c8adf929a62f52237cef27cd.tar.gz astro-23881e716457c358c8adf929a62f52237cef27cd.tar.zst astro-23881e716457c358c8adf929a62f52237cef27cd.zip |
docs: update `integrations` JSDoc to replace Tailwind integration (#13089)
-rw-r--r-- | packages/astro/src/types/public/config.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/src/types/public/config.ts b/packages/astro/src/types/public/config.ts index a65d1eccc..a2b8ab899 100644 --- a/packages/astro/src/types/public/config.ts +++ b/packages/astro/src/types/public/config.ts @@ -361,10 +361,10 @@ export interface ViteUserConfig extends OriginalViteUserConfig { * * ```js * import react from '@astrojs/react'; - * import tailwind from '@astrojs/tailwind'; + * import mdx from '@astrojs/mdx'; * { - * // Example: Add React + Tailwind support to Astro - * integrations: [react(), tailwind()] + * // Example: Add React + MDX support to Astro + * integrations: [react(), mdx()] * } * ``` */ |