1 Star 0 Fork 5

Sam/EarthSDK-vue-cli-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
vtxf 提交于 2020-02-11 14:26 . 增加使用纯Cesium进行开发的情况
// vue.config.js
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
configureWebpack: config => {
const cwp = new CopyWebpackPlugin([
{
from: './node_modules/cesium/Build/Cesium', // 调试时,将Cesium换成CesiumUnminified
to: 'js/Cesium',
toType: 'dir'
},
{
from: './node_modules/earthsdk/dist/XbsjCesium',
to: 'js/earthsdk/XbsjCesium',
toType: 'dir'
},
{
from: './node_modules/earthsdk/dist/XbsjEarth',
to: 'js/earthsdk/XbsjEarth',
toType: 'dir'
},
]);
config.plugins.push(cwp);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaopaoge/EarthSDK-vue-cli-app.git
[email protected]:xiaopaoge/EarthSDK-vue-cli-app.git
xiaopaoge
EarthSDK-vue-cli-app
EarthSDK-vue-cli-app
master

搜索帮助