mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* fix memory leak * add optional condition to hasAtRule * use known tree to handle `@apply` when required `@tailwind` at rules exists Otherwise we will generate the lookup tree. * only generate the missing `@tailwind` atrules when using `@apply` * update perf config to reflect 2.0 changes * update changelog * ensure lookup tree is correctly cached based on used tailwind atrules
23 lines
346 B
JavaScript
23 lines
346 B
JavaScript
let colors = require('../colors')
|
|
module.exports = {
|
|
purge: [],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: { colors },
|
|
},
|
|
variants: [
|
|
'responsive',
|
|
'group-hover',
|
|
'group-focus',
|
|
'hover',
|
|
'focus-within',
|
|
'focus-visible',
|
|
'focus',
|
|
'active',
|
|
'visited',
|
|
'disabled',
|
|
'checked',
|
|
],
|
|
plugins: [],
|
|
}
|