tailwind.config.js 421 B

123456789101112131415161718192021
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. darkMode: ["class"],
  4. content: [
  5. './pages/**/*.{ts,tsx}',
  6. './components/**/*.{ts,tsx}',
  7. './app/**/*.{ts,tsx}',
  8. './src/**/*.{ts,tsx}',
  9. ],
  10. theme: {
  11. container: {
  12. center: true,
  13. padding: "2rem",
  14. screens: {
  15. "2xl": "1400px",
  16. },
  17. },
  18. extend: {},
  19. },
  20. plugins: [require("@tailwindcss/typography")],
  21. }