/* * @Author: Do not edit * @Date: 2023-12-27 16:41:40 * @LastEditTime: 2024-01-09 10:20:47 * @LastEditors: DY * @Description: */ const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, publicPath: './', // 配置代理服务器 devServer: { // proxy: { // '/api': { // target: 'http://192.168.0.33:48082', // ws: true, // changeOrigin: true, // pathRewrite: { // '^/portapi': '' // } // } // } } })