12345678910111213141516171819202122 |
- module.exports = {
- devServer: {
- port: '8080',
- disableHostCheck: true,
- proxy: {
- // 'https://doc.okenx.com': {
- // target: 'https://doc.okenx.com',
- // changeOrigin: true,
- // pathRewrite: {
- // ["^" + 'https://doc.okenx.com']: ''
- // }
- // },
- '/Apis': {
- target: 'https://doc.okenx.com',
- changeOrigin: true,
- pathRewrite: {
- "^/Apis": ''
- }
- }
- }
- }
- }
|