mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-11-29 18:48:14 +08:00
11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
|
module.exports = ctx => ({
|
||
|
map: ctx.options.map,
|
||
|
plugins: {
|
||
|
'postcss-import': {},
|
||
|
'postcss-nesting': {
|
||
|
edition: '2024-02',
|
||
|
},
|
||
|
cssnano: ctx.env === 'production' ? { preset: 'default' } : false,
|
||
|
},
|
||
|
});
|