You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
659 B
JavaScript

5 months ago
const {defineConfig} = require('@vue/cli-service')
module.exports = defineConfig({
3 weeks ago
transpileDependencies: true,
runtimeCompiler: true,
devServer: {
hot: false,
host: "0.0.0.0",
port: 9000,
open: true,
https: false,
proxy: {
'/prod-api': {
// target: `http://175.27.215.92:8899/prod-api`,
// target: `http://192.168.137.1:9081`,
target: `http://1.13.177.47:8899/prod-api`,
changeOrigin: true,
pathRewrite: {
["^" + '/prod-api']: "",
},
},
5 months ago
},
3 weeks ago
},
5 months ago
})