diff options
author | 2022-08-03 21:04:44 +0200 | |
---|---|---|
committer | 2022-08-03 14:04:44 -0500 | |
commit | ec5518fe308ffe281b9e92755dec85489a1c1760 (patch) | |
tree | 799be198852bf754ae6ee9ef5f04b48f32421dba /examples/with-tailwindcss/tailwind.config.cjs | |
parent | 5f3b3b44db4171255eb35bfc12a2256784fdbb4b (diff) | |
download | astro-ec5518fe308ffe281b9e92755dec85489a1c1760.tar.gz astro-ec5518fe308ffe281b9e92755dec85489a1c1760.tar.zst astro-ec5518fe308ffe281b9e92755dec85489a1c1760.zip |
Add mdx extension to tailwind content glob. (#4063)
* Add mdx extension to tailwind content glob.
* Create wicked-hairs-rescue.md
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
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 dc0ae5c8f..49971da79 100644 --- a/examples/with-tailwindcss/tailwind.config.cjs +++ b/examples/with-tailwindcss/tailwind.config.cjs @@ -1,5 +1,5 @@ module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,svelte,ts,tsx,vue}'], + content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], theme: { extend: {}, }, |