Cesium+Vue idea开发环境搭建
参考: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.
·
参考: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('')
}),
......
]
更多推荐
已为社区贡献5条内容
所有评论(0)