NewFuture / miniprogram-build

A command line tool to build wechat MiniProgram. 微信小程序命令行构建工具
https://miniprogram-build.newfuture.cc
MIT License
58 stars 14 forks source link

perf(wxss-svg): reduce inline svg encoding size #30

Closed NewFuture closed 5 years ago

NewFuture commented 5 years ago

only encode %#"& now

 svg.replace(/%/g, '%25')
        .replace(/#/g, '%23')
        .replace(/"/g, "%22")
        .replace(/&/g, "%26")