📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 04:27:50
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
tailwindcss
/
src
/
util
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/tailwindcss/src/util
🔄 Refresh
✏️
Editing: getAllConfigs.js
Writable
import defaultFullConfig from '../../stubs/config.full.js' import { flagEnabled } from '../featureFlags' export default function getAllConfigs(config) { const configs = (config?.presets ?? [defaultFullConfig]) .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] }
💾 Save Changes
❌ Cancel