const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer: { proxy: { "/api": { target: "http://111.231.196.214:30001/", changeOrigin: true, secure: false, ws: false, pathRewrite: { "^/api": "", }, }, }, } })