1234567891011121314151617181920212223242526272829303132333435363738 |
-
- const path = require('path')
-
- module.exports ={
- // transpileDependencies: true,
- // lintOnSave:false,
- // devServer:{
- // proxy:{
- // "/api":{
- // target:"http://xx.com/admin",//代理到的服务器地址
- // ws:false,//是否对websocket启动代理
- // changeOrigin:true,//用于控制请求头中的值
- // changeOrigin: true,//设置true 代表跨域访问
- // secure: false, // 如果是https接口,需要配置这个参数
- // pathRewrite:{
- // '^/api': '/'
- // }
- // }
- // }
- // }
- dev: {
- // Paths
- assetsSubDirectory: 'static',
- assetsPublicPath: '/',
- proxyTable: {
- '/api': {
- target: 'http://sf.sgjyun.com',//设置你调用的接口域名和端口号 别忘了加http 正式
- // target: 'http://hf.szjkhd.com',//设置你调用的接口域名和端口号 别忘了加http 测试
- changeOrigin: true,//设置true 代表跨域访问
- secure: false, // 如果是https接口,需要配置这个参数
- pathRewrite: {
- '^/api': '/'//这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
- }
- }
- }
- }
- }
|