You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 rivejä
330 B

  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./app/**/*.{js,ts,jsx,tsx,mdx}",
  5. "./pages/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./components/**/*.{js,ts,jsx,tsx,mdx}",
  7. // Or if using `src` directory:
  8. "./src/**/*.{js,ts,jsx,tsx,mdx}",
  9. ],
  10. theme: {
  11. extend: {},
  12. },
  13. plugins: [],
  14. }