mirror of
https://github.com/Silentely/eSIM-Tools.git
synced 2026-09-02 22:14:02 +08:00
- 新增 .babelrc 配置文件,使用 Babel 进行代码转换和压缩 - 添加 PERFORMANCE.md 文件,详细说明性能优化措施 - 在 README.md 中增加性能优化相关说明 - 更新 index.html,添加 Service Worker 注册和性能优化脚本
24 lines
553 B
JavaScript
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
|
|
}]
|
|
})
|
|
]
|
|
};
|