diff options
author | 2022-09-14 22:43:10 +0200 | |
---|---|---|
committer | 2022-09-14 22:43:10 +0200 | |
commit | 0398efa39f14f40e77dc8e87f08e9f100a0fef34 (patch) | |
tree | afe96e9931b6e6ce86ba0ef7500c1f42bdf263ae /packages/integrations/tailwind/README.md | |
parent | 27aa9851d81fec0f418779fb7cad2c1836568be0 (diff) | |
download | astro-0398efa39f14f40e77dc8e87f08e9f100a0fef34.tar.gz astro-0398efa39f14f40e77dc8e87f08e9f100a0fef34.tar.zst astro-0398efa39f14f40e77dc8e87f08e9f100a0fef34.zip |
Tailwind v2 docs (#4758)
* Add migration notes to Tailwind changelog
* Include `tailwindcss` in manual install steps
* add changeset
Diffstat (limited to '')
-rw-r--r-- | packages/integrations/tailwind/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/tailwind/README.md b/packages/integrations/tailwind/README.md index 6d118a79c..7480327b9 100644 --- a/packages/integrations/tailwind/README.md +++ b/packages/integrations/tailwind/README.md @@ -42,9 +42,9 @@ If you run into any issues, [feel free to report them to us on GitHub](https://g ### Manual Install -First, install the `@astrojs/tailwind` package using your package manager. If you're using npm or aren't sure, run this in the terminal: +First, install the `@astrojs/tailwind` and `tailwindcss` packages using your package manager. If you're using npm or aren't sure, run this in the terminal: ```sh -npm install @astrojs/tailwind +npm install @astrojs/tailwind tailwindcss ``` Then, apply this integration to your `astro.config.*` file using the `integrations` property: |