Urara-Blog/node_modules/.pnpm-store/v3/files/5d/5b2a89d95e85c2bf345786e881f750c9d9c40d5c3203df6b3af9931b4deb8cbb2292402e0b933ab39a904b7f7c3d9e7ce0049a88864b393da56dd9ab1fc850
2022-08-14 01:14:53 +08:00

13 lines
406 B
Text

import log from './log'
export function validateConfig(config) {
if (config.content.files.length === 0) {
log.warn('content-problems', [
'The `content` option in your Tailwind CSS configuration is missing or empty.',
'Configure your content sources or your generated CSS will be missing styles.',
'https://tailwindcss.com/docs/content-configuration',
])
}
return config
}