cesium报错error in ./node_modules/cesium/Source/ThirdParty/zip.js 的解决办法

最近接触cesium项目,按照网上的教程,vue+cli创建项目后,cesium版本为1.87.1,结果发现报错,

  1. error in ./node_modules/cesium/Source/ThirdParty/zip.js

  2. Module parse failed: Unexpected token (1565:71)

  3. You may need an appropriate loader to handle this file type.

  4. | if (!workerData.interface) {

  5. | try {

  6. | workerData.worker = new Worker(new URL(workerData.scripts[0], import.meta.url));

  7. | } catch (error) {

  8. | workerData.worker = new Worker(new URL(workerData.scripts[0], import.meta.url), { type: "module" })

查找了很多资料,也根据网上的教程添加

module: {
      rules: [
      {
      test: /\.js$/,
      use: {
      loader: '@open-wc/webpack-import-meta-loader',
      },
      },
    ]}

还是没有用,在GitHub上找到了如下的回复

cesium报错error in ./node_modules/cesium/Source/ThirdParty/zip.js 的解决办法_第1张图片

 当前的解决办法是回退到1.8.0版本千万记住不要在1.8.0前面加^,加上还是会报错,因为他会下载最新的版本

cesium报错error in ./node_modules/cesium/Source/ThirdParty/zip.js 的解决办法_第2张图片

 

你可能感兴趣的:(cesium,javascript,vue.js,前端)