Use forms with or without client-side JavaScript--no code duplication required!
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

24 righe
545 B

  1. import type { Config } from 'tailwindcss'
  2. const config: Config = {
  3. content: [
  4. './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
  5. './src/components/**/*.{js,ts,jsx,tsx,mdx}',
  6. './src/app/**/*.{js,ts,jsx,tsx,mdx}',
  7. ],
  8. theme: {
  9. extend: {
  10. backgroundImage: {
  11. 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
  12. 'gradient-conic':
  13. 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
  14. },
  15. minHeight: {
  16. 12: '3rem',
  17. },
  18. },
  19. },
  20. plugins: [],
  21. }
  22. export default config