diff --git a/packages/astro/test/fixtures/tailwindcss/src/components/Complex.astro b/packages/astro/test/fixtures/tailwindcss/src/components/Complex.astro new file mode 100644 index 0000000000..bd30373c8e --- /dev/null +++ b/packages/astro/test/fixtures/tailwindcss/src/components/Complex.astro @@ -0,0 +1 @@ +
diff --git a/packages/astro/test/fixtures/tailwindcss/src/pages/index.astro b/packages/astro/test/fixtures/tailwindcss/src/pages/index.astro index 8ef5b17156..30e666384f 100644 --- a/packages/astro/test/fixtures/tailwindcss/src/pages/index.astro +++ b/packages/astro/test/fixtures/tailwindcss/src/pages/index.astro @@ -1,6 +1,8 @@ --- // Component Imports import Button from '../components/Button.astro'; +import Complex from '../components/Complex.astro'; + import "../styles/global.css"; // Full Astro Component Syntax: @@ -16,5 +18,6 @@ import "../styles/global.css"; +