module.exports = { // 配置路径别名 configureWebpack: { devServer: { port: '8890', disableHostCheck: true, https: false, proxy: { '/api': { target: 'https://parkingadmin.dev.dazesoft.cn/pudprod-api/', changeOrigin: true, pathRewrite: { '^/api': '' } } } } } };