vue-pdf icon indicating copy to clipboard operation
vue-pdf copied to clipboard

微前端子应用加载 vue-pdf 时报跨域问题

Open liqian06 opened this issue 2 years ago • 2 comments

image 网上找到了如下图所示的解决方式,但是需要改vue-pdf包中的源码,请问除了这种还有其他解决方式吗,还是说下个版本会更改这个文件呢 image image

liqian06 avatar Jan 05 '23 02:01 liqian06

至今没有好的解决方案吗,今天也遇到这个问题了,目前的解决方案是本地开发就设置浏览器跨域,因为我们主应用和子应用共享一个域名,上线后不存在这个问题。

SuperRonin avatar Aug 10 '23 03:08 SuperRonin

楼上的webpack配置貌似有误,我是这么配置的

config.module
      .rule('worker')
      .test(/\.worker\.js$/)
      .use('worker-loader')
      .loader('worker-loader')
      .options({
        inline: true,
        fallback: false,
      })
      .end()

SuperRonin avatar Aug 10 '23 07:08 SuperRonin