Skip to content
Snippets Groups Projects
tailwind.config.js 434 B
Newer Older
  purge: [
    "./app/Views/**/*.php",
    "./app/Views/**/*.ts",
    "/app/Helpers/**/*.php",
  ],
  theme: {},
  variants: {
    textDecoration: ["responsive", "hover", "focus", "group-hover"],
  },
  plugins: [
    require("@tailwindcss/custom-forms"),
    require("@tailwindcss/typography"),
  ],
  future: {
    removeDeprecatedGapUtilities: true,
    purgeLayersByDefault: true,
  },