美文网首页
打包成.umd.js,字体图标展示跨域问题

打包成.umd.js,字体图标展示跨域问题

作者: 在小白的路上越走越远 | 来源:发表于2023-01-31 09:56 被阅读0次

    网上查询原因(未验证):https://blog.csdn.net/weixin_39031037/article/details/125376300
    微[前端打包]部署后,子应用的iconfont的字体图标显示报错,
    原因:打包后请求字体的路径是获取主应用下面的文件

    解决方案

    // 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();
        }
    
    

    相关文章

      网友评论

          本文标题:打包成.umd.js,字体图标展示跨域问题

          本文链接:https://www.haomeiwen.com/subject/dywvhdtx.html