import type { Config } from 'tailwindcss';

import baseTailwindConfig from './tailwind.config';

/**
 * This special config file is used by `SongEmbedClient` so that we're not
 * including all of the styles of the entire app in a cute little embed.
 */
export default {
  ...baseTailwindConfig,
  content: [
    // './src/**/*.{js,ts,jsx,tsx,mdx}',
    './src/app/(embed)/**/*.{js,ts,jsx,tsx}',
    './src/icons/**/*.tsx',
    './src/components/icon/*.tsx',
    './src/components/image/Logo.tsx',
    './src/components/button/Button.tsx',
  ],
} satisfies Config;
