const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer: { client: { overlay: false }, port: 8080, proxy: { '/action': { target: 'http://localhost:9999', changeOrigin: true, pathRewrite: { '^/action': '' }, secure: false } } } })