1234567891011 |
- 'use strict'
- // 跨域请求设置,可配置多个
- module.exports = {
- table: [{
- context: ['/'],
- target: 'http://192.168.1.240:8200/api',
- changeOrigin: true,
- pathRewrite: { '': '/api' } // '^/api' 是一个正则表达式,作用:将 /api 提换成为 /
- }, ],
- // 本地配置ip访问(手机可通过IP访问),需要修改成本地Ip地址
- }
|