前端代理

在vue.config.js中
const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer:{ port:9090, open:true, // 代理 // proxy: { // '/api': { // target: 'http://localhost:8081', // changeOrigin: true, // pathRewrite: { // '^/api': '' // } // } // } } })

  

posted @ 2024-05-09 12:34  XiangdxDu  阅读(4)  评论(0编辑  收藏  举报