| 123456789101112131415161718 |
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- productionSourceMap: false,
- devServer: {
- proxy: {
- '/api': { //这里最好有一个 /
- target: 'http://matrix34.tpddns.cn:60001/api', // 后台接口域名
- ws: true, //如果要代理 websockets,配置这个参数
- secure: false, // 如果是https接口,需要配置这个参数
- changeOrigin: true, //是否跨域
- pathRewrite: {
- '^/api': ''
- }
- }
- }
- },
- })
|