Browse
For agents
About
Ultimate Store Kit
/
3.1.2
Ultimate Store Kit
v3.1.2
Switch version
3.0.8
3.0.9
3.1.0
3.1.2
3.1.3
3.0.7
3.0.5
3.0.4
3.0.3
3.0.2
trunk
1.5.0
1.5.1
1.5.2
1.6.1
1.6.2
1.6.3
1.6.4
2.0.0
2.0.1
2.0.2
2.0.3
2.0.4
2.0.5
2.0.6
All 92 releases
Overview
Code
ultimate-store-kit
/
postcss.config.js
postcss.config.js
in Ultimate Store Kit 3.1.2, at postcss.config.js
13 lines
258 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/**
2
* PostCSS for @wordpress/scripts (admin bundle).
3
* Tailwind runs on imported CSS; SCSS is compiled by sass-loader first, then PostCSS.
4
*/
5
module
.
exports
=
{
6
plugins
:
[
7
require
(
'
tailwindcss
'
)
,
8
require
(
'
autoprefixer
'
)
(
{
9
grid
:
true
,
10
}
)
,
11
]
,
12
}
;
13