mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 22:29:31 +08:00
13 lines
406 B
Text
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
|
|
}
|