mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-02-10 18:05:32 +08:00
18 lines
389 B
JavaScript
18 lines
389 B
JavaScript
const config = (ctx) => ({
|
|
plugins: {
|
|
'postcss-preset-env': {},
|
|
...(ctx.env === 'production' ? {
|
|
'@fullhuman/postcss-purgecss': {
|
|
content: [
|
|
'./src/**/*.html',
|
|
'./src/**/*.jsx',
|
|
'./src/**/*.js',
|
|
],
|
|
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || []
|
|
}
|
|
} : {})
|
|
},
|
|
});
|
|
|
|
export default config;
|