cleansh 0.1.2

Sanitize your terminal output. One tool. One purpose.
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [],
  theme: {
    extend: {},
  },
  plugins: [],
}

// website/tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./index.html", // Path to your main HTML file
    "./src/**/*.{js,ts,jsx,tsx,css}", // If you add other source files
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}