企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
[TOC] #### Vue3 跨域配置 ~~~ module.exports = { devServer: { open: false, // 自动启动项目 host: "localhost", // 主机 port: 8080, // 端口号 https: false, // 是否开启https hotOnly: false, // 是否热更新 proxy: { // 跨域配置 '/api': { target: 'http://localhost/code/epub/', ws: true, changeOrigin: true, } } } } ~~~