diff options
author | 2025-06-05 12:45:05 +0000 | |
---|---|---|
committer | 2025-06-05 12:45:05 +0000 | |
commit | ba8164f9bafe4eab5b2353d3c4fbc4b872d328d4 (patch) | |
tree | 3dcff3b78de15e03adeb407f26729fd1cd14cbb7 /astro.config.mjs | |
download | astro-examples/with-tailwindcss.tar.gz astro-examples/with-tailwindcss.tar.zst astro-examples/with-tailwindcss.zip |
Sync from 0947a69192ad6820970902c7c951fb0cf31fcf4bexamples/with-tailwindcss
Diffstat (limited to 'astro.config.mjs')
-rw-r--r-- | astro.config.mjs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 000000000..832a62b06 --- /dev/null +++ b/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()] + } +}); |