Other Notes

Extending Tailwind

In tailwind.config.js, there three directories setup with tailwind support. If you want to use tailwind in any other directory, add that here

tailwind.config.js
  content: [
    "./app/**/*.{js,jsx,ts,tsx}",
    './components/**/*.{js,ts,jsx,tsx,mdx}',
    './providers/**/*.{js,ts,jsx,tsx,mdx}',
  ]

Last updated