postcss-nesting@7.0.1 | | | `-- postcss@7.0.35 deduped | | +-- postcss-overflow-shorthand@2.0.0 | | | `-- postcss@7.0.35 deduped | | +-- postcss-page-break@2.0.0 | | | `-- postcss@7.0.35 deduped | | +-- postcss-place@4.0.1 | | | +-- postcss@7.0.35 deduped | |...
build:{postcss:{plugins:{"postcss-import":{},"postcss-preset-env":{},"tailwindcss/nesting":{},tailwindcss:{},autoprefixer:{},},},}, :{postcss:{postcssOptions:{plugins:{"postcss-import":{},"postcss-preset-env":{},"tailwindcss/nesting":{},tailwindcss:{},autoprefixer:{},},},},},...
Now I believe it is the ident: 'postcss' option that is missing (as of facebook/create-react-app#2677 (comment)), but I still have to convert to Webpack 2/3 to be able to use the options properly ('postcss-loader?ident=postcss' query option doesn't seem to work). I am also lo...
module.exports = { parser: 'babel-eslint', extends: [ 'airbnb', 'plugin:css-modules/recommended', "plugin:jsx-control-statements/recommended" ], plugins: [ 'css-modules', "jsx-control-statements" ], globals: { __DEV__: true, }, env: { browser: true, }, rules: { // Not suppo...
I had the same issue, but it was kind of fixed by doing in postcss config file module.exports = { plugins: { tailwindcss: { config:'./tailwind.config.js', }, autoprefixer: {}, }, } but now the error is that it does not find 'blocklist' 👍 1 Contributor github-actions bot...