網(wǎng)上查詢原因(未驗證):https://blog.csdn.net/weixin_39031037/article/details/125376300
微[前端打包]部署后,子應(yīng)用的iconfont的字體圖標(biāo)顯示報錯,
原因:打包后請求字體的路徑是獲取主應(yīng)用下面的文件
解決方案
// vue.config.js
chainWebpack: (config) => {
config.module.rule('fonts').use('url-loader').loader('url-loader').options({}).end();
config.module.rule('images').use('url-loader').loader('url-loader').options({}).end();
}