代码拉取完成,页面将自动刷新
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
pages: {
index: {
// page 的入口
entry: "src/main.js",
},
// 关闭语法检查
// lintOnSave: false,
},
// 开启代理服务器,目标端口号
// 方法1:
devServer: {
proxy: "http://localhost:3000",
},
// 方法2:
devServer: {
proxy: {
// 请求前缀
"/azhan": {
target: "http://localhost:3000",
pathRewrite: { "^/azhan": "" },
// 用于支持websocket
ws: true,
// 若为false,数据返回请求方
// 控制请求头中的host值
changeOrigin: true,
},
},
},
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。