1.精简svg
https://jakearchibald.github.io/svgomg
2.转化为base64
https://www.sojson.com/image2base64.html
3.在WXSS和WXML中使用
// Base64 在CSS中的使用
.box{
background-image: url("刚刚转的Base64");
}
// Base64 在HTML中的使用
<img src="https://img-blog.csdnimg.cn/2022010705264455756.jpg" />