Unfollow tool for Bluesky

forgot to add postcss and tailwind config files

+6
postcss.config.js
···
+
export default {
+
plugins: {
+
tailwindcss: {},
+
autoprefixer: {},
+
},
+
}
+13
tailwind.config.js
···
+
const plugin = require("tailwindcss/plugin");
+
+
module.exports = {
+
content: [
+
"./index.html",
+
"./src/**/*.{js,ts,jsx,tsx,css,md,mdx,html,json,scss}",
+
],
+
darkMode: "class",
+
theme: {
+
extends: {},
+
},
+
plugins: [require("@tailwindcss/forms")],
+
};