Use forms with or without client-side JavaScript--no code duplication required!
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

21 wiersze
507 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. },
  16. },
  17. plugins: [],
  18. }
  19. export default config