Create a production build of Tailwind at release time (#292)

* Add support for purging tailwind styles. For #224

* Build prod version of tailwind in build script
This commit is contained in:
Gabe Kangas
2020-10-26 08:49:33 -07:00
committed by GitHub
parent 153719cd1b
commit 6d0aa4bdd1
5 changed files with 1978 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
module.exports = {
plugins: [
require('cssnano')({
preset: 'default',
}),
],
};