⬆️ Updated dependencies

This commit is contained in:
Mawoka
2022-04-13 20:44:27 +02:00
parent 63fc9562b9
commit f4441f9843
10 changed files with 3080 additions and 695 deletions
+3 -1
View File
@@ -1,12 +1,14 @@
const tailwindcss = require('tailwindcss');
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const config = {
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer
autoprefixer,
cssnano({ preset: 'default' })
]
};