Files
vulnfeed/assets/tailwind.config.js

14 lines
253 B
JavaScript
Raw Permalink Normal View History

2025-08-25 19:39:51 +08:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
2025-08-26 18:41:23 +08:00
plugins: [
require('@tailwindcss/line-clamp'),
],
2025-08-25 19:39:51 +08:00
}