aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/astro-scripts/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/fixtures/astro-scripts/astro.config.mjs')
-rw-r--r--packages/astro/test/fixtures/astro-scripts/astro.config.mjs8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/astro-scripts/astro.config.mjs b/packages/astro/test/fixtures/astro-scripts/astro.config.mjs
new file mode 100644
index 000000000..4b982ad9c
--- /dev/null
+++ b/packages/astro/test/fixtures/astro-scripts/astro.config.mjs
@@ -0,0 +1,8 @@
+import { defineConfig } from 'astro/config';
+import tailwindcss from '@tailwindcss/vite';
+
+export default defineConfig({
+ vite: {
+ plugins: [tailwindcss()]
+ }
+});