Skip to content

Commit

Permalink
feat(examples:tailwind): add postcss-preset-env (#10160)
Browse files Browse the repository at this point in the history
* feat(examples:tailwind): add postcss-preset-env

* fix: prettier

* Review changes

* Update README.md

Co-authored-by: Joe Haddad <timer150@gmail.com>
  • Loading branch information
afzalsayed96 and Timer committed Jan 20, 2020
1 parent ea0d916 commit b95214e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
4 changes: 1 addition & 3 deletions examples/with-tailwindcss/README.md
Expand Up @@ -49,10 +49,8 @@ now

This setup is a basic starting point for using [Tailwind CSS](https://tailwindcss.com) with Next.js. This example also includes the following [PostCSS](https://github.com/postcss/postcss) plugins:

- [autoprefixer](https://github.com/postcss/autoprefixer) - Adds vendor prefixes to CSS rules in your stylesheet using values from [Can I Use](https://caniuse.com/)
- [postcss-preset-env](https://preset-env.cssdb.org/) - Adds stage 2+ features and autoprefixes
- [purgecss](https://github.com/FullHuman/purgecss) - Removes unused CSS
- [cssnano](https://cssnano.co/) - Minifies CSS
- [postcss-easy-import](https://github.com/TrySound/postcss-easy-import) - Allows importing one stylesheet into another

## Limitations

Expand Down
3 changes: 1 addition & 2 deletions examples/with-tailwindcss/package.json
Expand Up @@ -13,8 +13,7 @@
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.4",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.1.4"
}
}
2 changes: 1 addition & 1 deletion examples/with-tailwindcss/postcss.config.js
Expand Up @@ -13,6 +13,6 @@ module.exports = {
},
]
: undefined,
'autoprefixer',
'postcss-preset-env',
],
}
2 changes: 1 addition & 1 deletion examples/with-tailwindcss/styles/button.css
@@ -1,3 +1,3 @@
.btn-blue {
@apply .bg-blue-500 .text-white .font-bold .py-2 .px-4 .rounded;
@apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}

0 comments on commit b95214e

Please sign in to comment.