diff options
author | 2022-03-25 17:11:45 -0700 | |
---|---|---|
committer | 2022-03-25 17:11:45 -0700 | |
commit | f26845126863e7566e43f118af5d4eb2d991733c (patch) | |
tree | e4a20cb671e9b026774fdfb8a7e8b0a23d7f43b2 /examples/with-tailwindcss/tailwind.config.cjs | |
parent | 9d6e0b5dbac1e5c31f580c6234e977a3a3a4918f (diff) | |
download | astro-f26845126863e7566e43f118af5d4eb2d991733c.tar.gz astro-f26845126863e7566e43f118af5d4eb2d991733c.tar.zst astro-f26845126863e7566e43f118af5d4eb2d991733c.zip |
small tailwind example config fix (#2893)
* fix tailwind config example
* Create shaggy-bulldogs-beam.md
Diffstat (limited to 'examples/with-tailwindcss/tailwind.config.cjs')
-rw-r--r-- | examples/with-tailwindcss/tailwind.config.cjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-tailwindcss/tailwind.config.cjs b/examples/with-tailwindcss/tailwind.config.cjs index 2282e757d..2711f9948 100644 --- a/examples/with-tailwindcss/tailwind.config.cjs +++ b/examples/with-tailwindcss/tailwind.config.cjs @@ -1,5 +1,5 @@ module.exports = { - content: [], + content: ['./src/**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}'], theme: { extend: {}, }, |