在vuecli4中使用unocss和elementUI中打包后标不显示?
在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
回答:
module.exports = { publicPath: process.env.NODE_ENV === 'production'
? '/production-sub-path/'
: '/'
}
以上是 在vuecli4中使用unocss和elementUI中打包后标不显示? 的全部内容, 来源链接: utcz.com/p/934533.html