e3b6cb6485
This is a repo-wide refactor that introduces the injector to the main branch. The new architecture is as such: common/ injector/ renderer/
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
module.exports = ctx => {
|
|
return {
|
|
map: false,
|
|
plugins: {
|
|
"postcss-easy-import": {},
|
|
"postcss-csso": ctx.env === "production" ? {restructure: false} : false
|
|
}
|
|
};
|
|
}; |