1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-18 21:09:40 +02:00

chore(deps): add tailwindcss [DTD-29] (#6604)

This commit is contained in:
Chaim Lev-Ari 2022-04-26 08:16:46 +03:00 committed by GitHub
parent d08b498cb9
commit 141a530e28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 746 additions and 872 deletions

View file

@ -1,8 +1,9 @@
module.exports = ({ env }) => ({
plugins: {
plugins: [
// add vendor prefixes
autoprefixer: { browsers: 'last 2 versions' },
require('autoprefixer'),
// minify the result
cssnano: env !== 'development' ? {} : false,
},
env !== 'development' && require('cssnano'),
require('tailwindcss'),
],
});