From 254eb21c8384a920830d85d7a43cd6281df926c6 Mon Sep 17 00:00:00 2001 From: Roy Eden Date: Fri, 27 Jan 2023 12:14:19 -0300 Subject: [PATCH] fix: autoprefixer on dev mode for tailwind plugin (#6002) Co-authored-by: Sarah Rainsberger --- .changeset/mean-tips-search.md | 5 +++++ examples/with-tailwindcss/src/components/Button.astro | 2 +- .../e2e/fixtures/tailwindcss/src/components/Button.astro | 2 +- packages/astro/e2e/tailwindcss.test.js | 7 +++++++ packages/integrations/tailwind/README.md | 2 +- packages/integrations/tailwind/src/index.ts | 8 ++------ 6 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 .changeset/mean-tips-search.md diff --git a/.changeset/mean-tips-search.md b/.changeset/mean-tips-search.md new file mode 100644 index 000000000000..20372a04f847 --- /dev/null +++ b/.changeset/mean-tips-search.md @@ -0,0 +1,5 @@ +--- +'@astrojs/tailwind': patch +--- + +Re-enable autoprefixer in dev diff --git a/examples/with-tailwindcss/src/components/Button.astro b/examples/with-tailwindcss/src/components/Button.astro index 79060699bbdf..167927fb3872 100644 --- a/examples/with-tailwindcss/src/components/Button.astro +++ b/examples/with-tailwindcss/src/components/Button.astro @@ -4,7 +4,7 @@ --- diff --git a/packages/astro/e2e/fixtures/tailwindcss/src/components/Button.astro b/packages/astro/e2e/fixtures/tailwindcss/src/components/Button.astro index 6e0872173994..56c3b4e414e2 100644 --- a/packages/astro/e2e/fixtures/tailwindcss/src/components/Button.astro +++ b/packages/astro/e2e/fixtures/tailwindcss/src/components/Button.astro @@ -3,7 +3,7 @@ let { type = 'button' } = Astro.props; ---