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) {
5454
5555 if ( atRule . params === 'components' ) {
5656 const tailwindComponentTree = postcss . root ( {
57- nodes : [ ... container ( unwrappedConfig ) ] ,
57+ nodes : container ( unwrappedConfig ) ,
5858 } )
5959
6060 const pluginComponentTree = postcss . root ( {
61- nodes : [ ... pluginComponents ] ,
61+ nodes : pluginComponents ,
6262 } )
6363
6464 applyClassPrefix ( tailwindComponentTree , unwrappedConfig . options . prefix )
@@ -79,11 +79,11 @@ export default function(config) {
7979 }
8080
8181 const tailwindUtilityTree = postcss . root ( {
82- nodes : [ ... utilities . nodes ] ,
82+ nodes : utilities . nodes ,
8383 } )
8484
8585 const pluginUtilityTree = postcss . root ( {
86- nodes : [ ... pluginUtilities ] ,
86+ nodes : pluginUtilities ,
8787 } )
8888
8989 applyClassPrefix ( tailwindUtilityTree , unwrappedConfig . options . prefix )
You can’t perform that action at this time.
0 commit comments