Unfollow tool for Bluesky
1const plugin = require("tailwindcss/plugin"); 2 3module.exports = { 4 content: [ 5 "./index.html", 6 "./src/**/*.{js,ts,jsx,tsx,css,md,mdx,html,json,scss}", 7 ], 8 darkMode: "class", 9 theme: { 10 extends: {}, 11 }, 12 plugins: [require("@tailwindcss/forms")], 13};