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 }) => ({
|
2023-03-14 20:01:10 -07:00
|
|
|
plugins: [
|
|
|
|
'autoprefixer',
|
|
|
|
env === 'production' ? 'cssnano' : '',
|
|
|
|
],
|
2019-01-04 02:28:38 -08:00
|
|
|
});
|