tailwind.config.js 189 B

123456789
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. mode: "all",
  4. content: ["./src/**/*.{rs,html,css}", "./dist/**/*.html"],
  5. theme: {
  6. extend: {},
  7. },
  8. plugins: [],
  9. };