🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[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, } } } } ~~~