File tree 1 file changed +6
-6
lines changed
packages/react-scripts/config
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -143,9 +143,9 @@ module.exports = function (webpackEnv) {
143
143
config : false ,
144
144
plugins : ! useTailwind
145
145
? [
146
- 'postcss-flexbugs-fixes' ,
146
+ require . resolve ( 'postcss-flexbugs-fixes' ) ,
147
147
[
148
- 'postcss-preset-env' ,
148
+ require . resolve ( 'postcss-preset-env' ) ,
149
149
{
150
150
autoprefixer : {
151
151
flexbox : 'no-2009' ,
@@ -156,13 +156,13 @@ module.exports = function (webpackEnv) {
156
156
// Adds PostCSS Normalize as the reset css with default options,
157
157
// so that it honors browserslist config in package.json
158
158
// which in turn let's users customize the target behavior as per their needs.
159
- 'postcss-normalize' ,
159
+ require . resolve ( 'postcss-normalize' ) ,
160
160
]
161
161
: [
162
- 'tailwindcss' ,
163
- 'postcss-flexbugs-fixes' ,
162
+ require . resolve ( 'tailwindcss' ) ,
163
+ require . resolve ( 'postcss-flexbugs-fixes' ) ,
164
164
[
165
- 'postcss-preset-env' ,
165
+ require . resolve ( 'postcss-preset-env' ) ,
166
166
{
167
167
autoprefixer : {
168
168
flexbox : 'no-2009' ,
You can’t perform that action at this time.
0 commit comments