frontend/.pnpm-store/v3/files/ea/b81cd1a6adb3e5e4da7d1eefa8d6b97aececab83d97ddb93a2b228aab5ff2a56240f541d4a24cbc1fd9d66166d01b3890d6a318d380bf90d7f9b9357be0409

25 lines
782 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "validateConfig", {
enumerable: true,
get: ()=>validateConfig
});
const _log = /*#__PURE__*/ _interopRequireDefault(require("./log"));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
function validateConfig(config) {
if (config.content.files.length === 0) {
_log.default.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;
}