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