import baseConfig from './tailwind.config.js'; const baseContent = Array.isArray(baseConfig.content) ? baseConfig.content : []; export default { ...baseConfig, content: [ ...baseContent, './src/atividades/letramento/**/*.{html,js}', ], safelist: [ { pattern: /text-(red|purple|green|blue|orange|gray|yellow)-(500|600|700)/, }, { pattern: /bg-(blue|purple|red|yellow|green|orange|gray)-50/, }, { pattern: /border-(blue|purple|red|yellow|green)-400/, }, ], };