1234567891011121314151617181920 |
- const path = require('path');
- module.exports = {
- transpileDependencies: ['uview-ui'],
- devServer: {
- port: '6901',
- inline: false,
- //api地址前缀
- proxy: {
- // '/api/util': {
- // target: 'http://localhost:6900',
- // changeOrigin: true,
- // },
- // '/api': {
- // target: 'http://sps.fwedzgc.com:8090',
- // changeOrigin: true,
- // ws: false,
- // },
- },
- },
- };
|