Merge branch 'master' of github.com:tailwindlabs/tailwindcss

This commit is contained in:
Adam Wathan 2020-08-06 16:08:49 -04:00
commit cafbc65b3b

View File

@ -46,7 +46,8 @@ export default function(plugins, config) {
const applyConfiguredPrefix = selector => {
return prefixSelector(config.prefix, selector)
}
const getConfigValue = (path, defaultValue) => _.get(config, path, defaultValue)
const getConfigValue = (path, defaultValue) => (path ? _.get(config, path, defaultValue) : config)
const browserslistTarget = browserslist().includes('ie 11') ? 'ie11' : 'relaxed'
plugins.forEach(plugin => {