const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer:{ port:8081, proxy:{ "/abcdefg":{ target:"http://localhost:8080/hosp5_war_exploded", changeOrigin:true, pathRewrite:{"/abcdefg":""}, secure : false } } } })