const { defineConfig } = require('@vue/cli-service') module.exports = { devServer: { port: 8081, proxy: { '/api': { target: 'http://47.105.32.17:8888', changeOrigin: true, pathRewrite: { '^/api': '' } } } } }