mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-15 00:15:57 +08:00
* Add support to x vversion from npm * Add support to x vversion from npm * Add support to x vversion from npm * Add documentation for current repository
22 lines
847 B
Markdown
22 lines
847 B
Markdown
# Svgo <Badge text="v3.9.0+"/>
|
|
|
|
本项目提供了 svg 压缩处理优化功能。基于 [svgo](https://github.com/svg/svgo)实现。
|
|
|
|
```bash
|
|
npm run svgo
|
|
```
|
|
|
|
我们很多网上下载或者 `Sketch` 导出的 svg 会有很多冗余无用的信息,大大的增加了 svg 的尺寸,我们可以使用 `svgo` 对它进行优化。比如下图是用 `Sketch` 导出的一个 svg
|
|
|
|

|
|
|
|
我们可以执行`npm run svgo`
|
|
|
|

|
|
|
|

|
|
|
|
无用的信息都被处理掉了。
|
|
|
|
更多详细的配置 可以在 `/src/icons/svgo.yml`中进行配置。
|