mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Don't include module if explicitly disabled in config
This commit is contained in:
parent
9202ecf104
commit
5870489f38
@ -95,6 +95,10 @@ function modules() {
|
||||
}
|
||||
|
||||
function withVariants(module, variants) {
|
||||
if (variants === false) {
|
||||
return []
|
||||
}
|
||||
|
||||
return _.reduce(
|
||||
variants,
|
||||
(result, variant) => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user