an attempt to make a lightweight, easily self-hostable, scoped bluesky appview
1/** @type {import('npm:tailwindcss').Config} */
2export default {
3 content: ["./**/*.{tsx,html}"], // make sure all your HTML/JSX paths are here
4 theme: {
5 extend: {},
6 },
7 plugins: [
8 // add Tailwind UI plugins if you want, like forms/typography
9 // require("@tailwindcss/forms"), etc.
10 ],
11};