Files
eSIM-Tools/postcss.config.js
Abner ac0744c4d5 feat(performance): 优化性能并添加离线支持
- 新增 .babelrc 配置文件,使用 Babel 进行代码转换和压缩
- 添加 PERFORMANCE.md 文件,详细说明性能优化措施
- 在 README.md 中增加性能优化相关说明
- 更新 index.html,添加 Service Worker 注册和性能优化脚本
2025-08-05 22:33:56 +08:00

24 lines
553 B
JavaScript

module.exports = {
plugins: [
require('autoprefixer'),
require('cssnano')({
preset: ['default', {
discardComments: {
removeAll: true,
},
normalizeWhitespace: true,
colormin: true,
minifyFontValues: true,
minifySelectors: true,
mergeRules: true,
mergeLonghand: true,
mergeShorthands: true,
reduceIdents: false,
reduceInitial: true,
reduceTransforms: true,
uniqueSelectors: true,
zindex: false
}]
})
]
};