summaryrefslogtreecommitdiff
path: root/examples/tailwindcss/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-05-21 14:02:19 -0600
committerGravatar GitHub <noreply@github.com> 2021-05-21 14:02:19 -0600
commit19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd (patch)
treec483e969746be30aa980a6fc8e583d59c85cb9b4 /examples/tailwindcss/astro.config.mjs
parent69d693b77ce8d702a193bfcff8e5338889546ae4 (diff)
downloadastro-19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd.tar.gz
astro-19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd.tar.zst
astro-19e20f2c54eaa8f0c2ebec54b071ffc4abd524bd.zip
Add Tailwind support to Astro Dev Server (#222)
* Improve PostCSS and Tailwind support * Update styling docs * Changelog * Fix test hanging
Diffstat (limited to 'examples/tailwindcss/astro.config.mjs')
-rw-r--r--examples/tailwindcss/astro.config.mjs5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/tailwindcss/astro.config.mjs b/examples/tailwindcss/astro.config.mjs
new file mode 100644
index 000000000..7e6aaa3fd
--- /dev/null
+++ b/examples/tailwindcss/astro.config.mjs
@@ -0,0 +1,5 @@
+export default {
+ devOptions: {
+ tailwindConfig: './tailwind.config.js',
+ },
+};