参考:https://blog.csdn.net/m0_37972557/article/details/79768408
注意出现Unable to determine Cesium base URL automatically, try defining a global variable called CESIUM_BASE_URL.错误时,解决方法是在webpack.dev.conf.js和webpack.prod.conf.js文件中plugin里面加上:
CESIUM_BASE_URL:JSON.stringify(’’)

加上后的代码如下:

plugins: [
  // http://vuejs.github.io/vue-loader/en/workflow/production.html
  new webpack.DefinePlugin({
    'process.env': env,
    CESIUM_BASE_URL:JSON.stringify('')
  }),
  ......
  ]
Logo

前往低代码交流专区

更多推荐