Skip to content
This repository was archived by the owner on May 8, 2021. It is now read-only.

Commit 6ce3110

Browse files
author
Brandon Pittman
committed
Update README
1 parent 3c24cfd commit 6ce3110

File tree

1 file changed

+3
-24
lines changed

1 file changed

+3
-24
lines changed

examples/gridsome/README.md

+3-24
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,11 @@ It includes both gridsome-plugin-tailwindcss and the regular tailwindcss so
88
that you can write your own plugins and access the default config in
99
`tailwind.config.js`.
1010

11-
The plugin adds Tailwind directives under the hood using Gridsome's Client API,
12-
but you can turn off auto-importing of the Tailwind directives by passing this
13-
to the plugin in `gridsome.config.js`.
14-
15-
```js
16-
module.exports = {
17-
plugins: [
18-
{
19-
use: 'gridsome-plugin-tailwindcss',
20-
options: {
21-
shouldBeEasy: false
22-
}
23-
}
24-
]
25-
}
26-
```
11+
The plugin adds Tailwind directives under the hood using Gridsome's Client API
12+
so Tailwind works out-of-the-box, requiring no further declaration of Tailwind
13+
directives.
2714

2815
It's recommended to use `tailwind.config.js` to add [global base styles](https://tailwindcss.com/docs/adding-base-styles#using-a-plugin),
2916
components, and utilities instead of adding them in CSS files.
3017

31-
Or you can add the directives somewhere in your CSS.
32-
33-
```css
34-
@tailwind base;
35-
@tailwind components;
36-
@tailwind utilities;
37-
```
38-
3918
Now you should be all set to start using Tailwind, postcss-preset-env, postcss-import, and PurgeCSS in your Gridsome project!

0 commit comments

Comments
 (0)