const {defineConfig} = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer: { host: 'localhost', port: 9098, open: true, proxy: { '/api': { target: 'http://localhost:8080', changeOrigin: true, pathRewrite: { '^/api': '' } }, '/minio': { target: 'http://221.237.182.28:19000', changeOrigin: true, pathRewrite: { '^/minio': '' } } } } })