芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/node_modules/tailwindcss/src/util/getAllConfigs.js
import defaultConfig from '../../stubs/defaultConfig.stub.js' import { flagEnabled } from '../featureFlags' export default function getAllConfigs(config) { const configs = (config?.presets ?? [defaultConfig]) .slice() .reverse() .flatMap((preset) => getAllConfigs(preset instanceof Function ? preset() : preset)) const features = { // Add experimental configs here... respectDefaultRingColorOpacity: { theme: { ringColor: ({ theme }) => ({ DEFAULT: '#3b82f67f', ...theme('colors'), }), }, }, disableColorOpacityUtilitiesByDefault: { corePlugins: { backgroundOpacity: false, borderOpacity: false, divideOpacity: false, placeholderOpacity: false, ringOpacity: false, textOpacity: false, }, }, } const experimentals = Object.keys(features) .filter((feature) => flagEnabled(config, feature)) .map((feature) => features[feature]) return [config, ...experimentals, ...configs] }