summaryrefslogtreecommitdiffstats
path: root/postcss.config.js
blob: 63aeafb36d99398570a214eda1cfdb70ce186439 (plain)
1
2
3
4
5
6
7
8
9
10
/** @type {import('postcss-load-config').Config} */
const config = ({ env }) => ({
  plugins: [
    require('postcss-preset-env'),
    require('autoprefixer'),
    env === 'production' ? require('cssnano') : '',
  ],
});

module.exports = config;