Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,21 @@ Then add the plugin to your main `style.css` file:
+ @plugin "@tailwindcss/typography";
```

If you are still using **Tailwind CSS v3**, add the plugin to your `tailwind.config.js` file:

```
// tailwind.config.js
module.exports = {
theme: {
// ...
},
plugins: [
require('@tailwindcss/typography'),
// ...
],
}
```

---

## Basic usage
Expand Down