We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeec4a8 commit 976b084Copy full SHA for 976b084
README.md
@@ -33,8 +33,18 @@ Then add the plugin to your main `style.css` file:
33
+ @plugin "@tailwindcss/typography";
34
```
35
36
-> [!NOTE]
37
-> [Tailwind v3 installation instructions](https://github.com/tailwindlabs/tailwindcss-typography/blob/d1e6421d4c07c15b3e1db6b6b10549df96fb129d/README.md)
+If you are still using Tailwind CSS v3, add the plugin to your tailwind.config.js file:
+
38
+// tailwind.config.js
39
+module.exports = {
40
+ theme: {
41
+ // ...
42
+ },
43
+ plugins: [
44
+ require('@tailwindcss/typography'),
45
46
+ ],
47
+}
48
49
---
50
0 commit comments