UNPKG
@luongtt/create-react-base
Version:
latest (1.0.1)
1.0.1
1.0.0
This is utility package for create react app base on create-react-app package
@luongtt/create-react-base
/
config
/
postcss.config.js
8 lines
(7 loc)
•
154 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module.exports
=
{
plugins:
{
tailwindcss:
{},
autoprefixer:
{},
...(process.env.NODE_ENV
===
'production'
?
{
cssnano:
{} }
:
{}
)
, }, }
;