💄 move to tailwindcss

This commit is contained in:
2022-05-26 14:30:26 -04:00
parent a98d6e2e0a
commit 5b8f1f40fe
111 changed files with 2881 additions and 4262 deletions

10
postcss.config.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
plugins: [
require('postcss-import'),
require('tailwindcss'),
require('autoprefixer'),
...(process.env.JEKYLL_ENV == "production"
? [require('cssnano')({ preset: 'default' })]
: [])
]
};