const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ devServer:{ host: 'localhost', port: 8080, https: false, proxy:{ //登录接口 '/auth/login':{ target : 'https://911fb0525ms3.vicp.fun/loveforest/api', changeOrigin : true, }, //获取好友列表接口 '/relationships':{ target : 'https://911fb0525ms3.vicp.fun/loveforest/api', changeOrigin : true }, //获取相应的聊天记录的接口 '/messages/chat':{ target : 'https://911fb0525ms3.vicp.fun/loveforest/api', changeOrigin : true }, //保存聊天的一条消息接口 '/messages/send':{ target : 'https://911fb0525ms3.vicp.fun/loveforest/api', changeOrigin : true }, //新消息是否被已读的接口 '/messages/mark-as-read':{ target : 'https://911fb0525ms3.vicp.fun/loveforest/api', changeOrigin : true } } }, transpileDependencies: true })