diff options
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index 03b05823..1f71fb92 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,9 +1,7 @@ /** @type {import('tailwindcss').Config} */ module.exports = { content: [ - "./src/pages/**/*.{js,ts,tsx}", - "./src/components/**/*.{js,ts,tsx}", - "./src/helpers/**/*.{js,ts,tsx}", + "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { @@ -101,5 +99,7 @@ module.exports = { } }, }, - plugins: [], + plugins: [ + require('@tailwindcss/line-clamp'), + ], } |
