Skip to content

Commit

Permalink
Updated postcss config
Browse files Browse the repository at this point in the history
  • Loading branch information
lfades committed Aug 23, 2020
1 parent 8508952 commit c743d1e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/cms-kontent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"rxjs": "^6.6.2"
},
"devDependencies": {
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.4.0"
"tailwindcss": "^1.7.3"
}
}
17 changes: 16 additions & 1 deletion examples/cms-kontent/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
module.exports = {
plugins: ['tailwindcss', 'postcss-preset-env'],
plugins: [
'tailwindcss',
'postcss-flexbugs-fixes',
[
'postcss-preset-env',
{
autoprefixer: {
flexbox: 'no-2009',
},
stage: 3,
features: {
'custom-properties': false,
},
},
],
],
}

0 comments on commit c743d1e

Please sign in to comment.