summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-tailwindcss/astro.config.mjs')
-rw-r--r--examples/with-tailwindcss/astro.config.mjs10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/with-tailwindcss/astro.config.mjs b/examples/with-tailwindcss/astro.config.mjs
new file mode 100644
index 000000000..832a62b06
--- /dev/null
+++ b/examples/with-tailwindcss/astro.config.mjs
@@ -0,0 +1,10 @@
+// @ts-check
+import { defineConfig } from 'astro/config';
+import tailwindcss from '@tailwindcss/vite';
+
+// https://astro.build/config
+export default defineConfig({
+ vite: {
+ plugins: [tailwindcss()]
+ }
+});