diff options
author | 2021-06-16 18:36:19 +0100 | |
---|---|---|
committer | 2021-06-16 11:36:19 -0600 | |
commit | 3ada25d7d9ebbdff469d31399ac112d3d7fb7249 (patch) | |
tree | a65bb6c24a5fd5233204fd9e4467112713adc437 /docs/styling.md | |
parent | c0804fc8cd10b1f8bec6c3784cde9623fb871062 (diff) | |
download | astro-3ada25d7d9ebbdff469d31399ac112d3d7fb7249.tar.gz astro-3ada25d7d9ebbdff469d31399ac112d3d7fb7249.tar.zst astro-3ada25d7d9ebbdff469d31399ac112d3d7fb7249.zip |
Pass configured Tailwind config file to the `tailwindcss` plugin (#352)
* fix tailwind config filename
* pass configured config file to tailwindcss
* add changeset
* remove `tailwindConfig` from `CompileOptions` interface
Diffstat (limited to 'docs/styling.md')
-rw-r--r-- | docs/styling.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/styling.md b/docs/styling.md index 2f57cd21f..86ce2e840 100644 --- a/docs/styling.md +++ b/docs/styling.md @@ -107,7 +107,7 @@ Be sure to add the config path to `astro.config.mjs`, so that Astro enables JIT // astro.config.mjs export default { + devOptions: { -+ tailwindConfig: './tailwindConfig.js', ++ tailwindConfig: './tailwind.config.js', + }, }; ``` |