12345678910111213141516171819202122 |
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- devServer:{
- proxy:{
- '/abc':{
- port:'8081',
- target: 'http://localhost:8080/foodssm_war_exploded/',//代理地址,这里设置的地址会代替axios中设置的baseURL
- changeOrigin: true,// 如果接口跨域,需要进行这个参数配置
- //ws: true, // proxy websockets
- //pathRewrite方法重写url
- pathRewrite: {
- '^/abc': '/'
- //pathRewrite: {'^/api': '/'} 重写之后url为 http://192.168.1.16:8085/xxxx
- //pathRewrite: {'^/api': '/api'} 重写之后url为 http://192.168.1.16:8085/api/xxxx
- },
- secure : false
- }
- }
- }
- })
|