File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,11 @@ export default function(config) {
54
54
55
55
if ( atRule . params === 'components' ) {
56
56
const tailwindComponentTree = postcss . root ( {
57
- nodes : [ ... container ( unwrappedConfig ) ] ,
57
+ nodes : container ( unwrappedConfig ) ,
58
58
} )
59
59
60
60
const pluginComponentTree = postcss . root ( {
61
- nodes : [ ... pluginComponents ] ,
61
+ nodes : pluginComponents ,
62
62
} )
63
63
64
64
applyClassPrefix ( tailwindComponentTree , unwrappedConfig . options . prefix )
@@ -79,11 +79,11 @@ export default function(config) {
79
79
}
80
80
81
81
const tailwindUtilityTree = postcss . root ( {
82
- nodes : [ ... utilities . nodes ] ,
82
+ nodes : utilities . nodes ,
83
83
} )
84
84
85
85
const pluginUtilityTree = postcss . root ( {
86
- nodes : [ ... pluginUtilities ] ,
86
+ nodes : pluginUtilities ,
87
87
} )
88
88
89
89
applyClassPrefix ( tailwindUtilityTree , unwrappedConfig . options . prefix )
You can’t perform that action at this time.
0 commit comments