diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-07 15:05:32 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-07 15:05:32 +0700 |
| commit | 323451e38636a38bccee3a8c41056911729223b2 (patch) | |
| tree | 5179bbf14696c66c2f56c1b572b7590084c4a51a | |
| parent | 5d4d87c8bdb42c19e57a458fdc4d05de1ade4546 (diff) | |
add lib tailwind/typography
| -rw-r--r-- | package.json | 1 | ||||
| -rw-r--r-- | tailwind.config.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index e7cf96de..a103d40c 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ }, "devDependencies": { "@svgr/webpack": "^6.5.0", + "@tailwindcss/typography": "^0.5.9", "autoprefixer": "^10.4.12", "eslint": "8.26.0", "eslint-config-next": "13.0.0", diff --git a/tailwind.config.js b/tailwind.config.js index e25c9203..58a0e5bb 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -97,5 +97,5 @@ module.exports = { } } }, - plugins: [require('@tailwindcss/line-clamp')] + plugins: [require('@tailwindcss/line-clamp'), require('@tailwindcss/typography')] } |
