tailwind.config.ts 241 B

12345678910111213
  1. import type { Config } from "tailwindcss";
  2. export default {
  3. content: [
  4. "./routes/**/*.{ts,tsx}",
  5. "./islands/**/*.{ts,tsx}",
  6. "./components/**/*.{ts,tsx}",
  7. ],
  8. theme: {
  9. extend: {},
  10. },
  11. plugins: [],
  12. } satisfies Config;