module.exports = { devServer: { open: true, // npm run serve后自动打开页面 host: 'localhost', port: 8080, // 开发服务器运行端口号 overlay: { warnings: false, errors: true }, proxy: { //配置代理 "/api": { // target: 'https://shop.dev.chutang66.com/', target: 'https://shop.chutang66.com/', changeOrigin: true, //开启代理 pathRewrite: { // 重命名 "^/api": "api" } } } } }