const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, }) module.exports = { publicPath: '', devServer: process.env.NODE_ENV == 'development'?{ proxy: { '/api': { // target: 'https://mall.zhiqiyun.com', target: 'http://192.168.110.180:8090', // target: 'http://kyytest.zhiqiyun.com', changeOrigin: true, pathRewrite: { '^/api': '' } } } }:{} }