1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-18 12:59:39 +02:00
portainer/postcss.config.js
2022-04-26 08:16:46 +03:00

9 lines
213 B
JavaScript

module.exports = ({ env }) => ({
plugins: [
// add vendor prefixes
require('autoprefixer'),
// minify the result
env !== 'development' && require('cssnano'),
require('tailwindcss'),
],
});