mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 16:23:35 +01:00
11 lines
167 B
JavaScript
11 lines
167 B
JavaScript
|
module.exports = (ctx) => {
|
||
|
const ret = {
|
||
|
map: ctx.env === 'development' ? ctx.map : false,
|
||
|
plugins: {
|
||
|
autoprefixer: {},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
return ret;
|
||
|
};
|