在vue.config.js中这样配置unocss,样式是生效的,但是当我打包后,elementUI中的引用的图标不能显示
css: {
loaderOptions: {
sass: {
sassOptions: {
outputStyle: "expanded",
},
},
},
extract: {
filename: "[name].[hash:9].css",
ignoreOrder: true,
publicPath: "../../",
},
},
报错front路径变为了
/static/css/static/fonts/abc.woff
多了一层/static/css的嵌套,我应该如何才能变成static/fonts/abc.woff