txw/txw-yygl-web/proxy.js
2026-04-05 15:05:13 +08:00

14 lines
266 B
JavaScript

const CONTEXT = process.env.VUE_APP_API_BASE_URL;
const CONTEXT_REWRITE = `^${CONTEXT}`;
module.exports = {
proxy: {
[CONTEXT]: {
target: 'http://86.20.164.120:8081', // 房土
pathRewrite: {
[CONTEXT_REWRITE]: '',
},
},
},
};