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

Commit 3c24cfd

Browse files
author
Brandon Pittman
committed
Update README
1 parent 29e5509 commit 3c24cfd

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

examples/gridsome/README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,21 @@ 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-
This best way to get going is to add this line to import Tailwind's directives in `src/main.js`:
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`.
1214

1315
```js
14-
import 'tailwindcss/tailwind.css'
16+
module.exports = {
17+
plugins: [
18+
{
19+
use: 'gridsome-plugin-tailwindcss',
20+
options: {
21+
shouldBeEasy: false
22+
}
23+
}
24+
]
25+
}
1526
```
1627

1728
It's recommended to use `tailwind.config.js` to add [global base styles](https://tailwindcss.com/docs/adding-base-styles#using-a-plugin),

0 commit comments

Comments
 (0)