This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-01-04 02:28:38 -08:00
|
|
|
module.exports = ({ env }) => ({
|
2018-12-31 09:11:48 -08:00
|
|
|
plugins: {
|
2019-01-04 02:28:38 -08:00
|
|
|
autoprefixer: {},
|
|
|
|
cssnano: env === 'production' ? {} : false,
|
2018-12-31 09:11:48 -08:00
|
|
|
},
|
2019-01-04 02:28:38 -08:00
|
|
|
});
|