Jevon617 / unplugin-svg-component

generate a vue/react component through svg files, supporting svg file HMR, Tree-shaking, SSR and TS hint.
MIT License
58 stars 5 forks source link

生产环境下图标不显示 #4

Closed joanoor closed 1 year ago

joanoor commented 1 year ago

新版本的unplugin-svg-component,开发环境可以正常使用,但是打包部署到生产环境,图标就不显示。回退到版本0.4.1则没有这个问题。

Jevon617 commented 1 year ago

v0.5.0加了tree-shaking, 这可能会影响生产的代码,可以看下配置项的scanStrategy看是否能解决你的问题, 如果不能解决, 可以提供一个最小的复现demo。

rxxcy commented 1 year ago

scanStrategy: 'text' 能解决

Jevon617 commented 1 year ago

@rxxcy Thank you!