1 Star 0 Fork 0

wys_gis/cesiumksh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 3.00 KB
一键复制 编辑 原始数据 按行查看 历史
wys_gis 提交于 2024-02-06 15:23 . 1
const { defineConfig } = require('@vue/cli-service')
const debug = process.env.NODE_ENV !== 'production'
module.exports = defineConfig({
transpileDependencies: true,
})
module.exports = {
publicPath: "./",
outputDir: `dist/prod`,
lintOnSave: false,//是否开启eslint保存检测 ,它的有效值为 true || false || 'error'\
devServer: {
open: true, //配置自动启动浏览器
// host: "192.168.10.18",
https: false,
// hotOnly: false, //热更新
port: 7878,
proxy: {
"/ndashboard": {
// /api 表示拦截以/api开头的请求路径
// target: "http://192.168.14.30", // 跨域的域名
// target: 'http://192.168.11.6:8091', // 跨域的域名
// target:"http://192.168.10.14:8080",
// target: "http://172.20.12.11:8088",
target: "http://10.51.21.110:3667", // 线上
// target:'http://192.168.10.18:9088', //本地
// target:'http://192.168.10.13:9088',
changeOrigin: true, // 是否开启跨域
},
"/watermanagement": {
target: "http://10.51.21.110:3667", // 线上
// target: "http://192.168.10.14:9205", //本地
changeOrigin: true, // 是否开启跨域
},
"/ivms": {
// target: `http://172.21.3.41:26088`,
target: `http://172.20.10.39:26088`,
// target: `http://192.168.16.107:8080`,
changeOrigin: true,
pathRewrite: {
["^" + "/ivms"]: "/ivms",
},
},
"/superMap": {
target: "http://10.51.21.110:3667", // 线上
changeOrigin: true, // 是否开启跨域
},
"/dem": {
target: "http://192.168.10.21:80", // 线上
// target:'http://172.20.10.131',
changeOrigin: true, // 是否开启跨域
},
'/geoserver': {
target: "http://172.20.10.131:8080", // 线上
changeOrigin: true, // 是否开启跨域
},
'/json': {
target: "http://172.20.10.131", // 线上
changeOrigin: true, // 是否开启跨域
},
"/dem": {
target: "http://172.20.10.131", // 线上
// target: "localhost", // 线上
changeOrigin: true, // 是否开启跨域
pathRewrite: {
["^" + "/dem"]: "/dem",
},
},
},
client: {
overlay: false,
},
},
// configureWebpack: {
// resolve: {
// alias: {
// '@': path.resolve(__dirname, 'src')
// }
// }
// },
// chainWebpack: (config) => {
// config.resolve.alias
// .set('@', resolve('src'))
// .set('assets', resolve('src/assets'));
// },
// css: {
// loaderOptions: {
// postcss: {
// plugins: [
// require("postcss-px2rem-exclude")({
// remUnit: 192, //1920
// // exclude: /node_modules|folder_name/i
// }),
// ],
// },
// },
// },
productionSourceMap: false,
configureWebpack: config => {
if (debug) { // 开发环境配置
config.devtool = 'source-map'
}
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wys_gis/cesiumksh.git
git@gitee.com:wys_gis/cesiumksh.git
wys_gis
cesiumksh
cesiumksh
master

搜索帮助