2 Star 6 Fork 6

Williams/Vue2_尚硅谷学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 730 Bytes
一键复制 编辑 原始数据 按行查看 历史
Williams 提交于 2022-04-25 15:06 . 服务器
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,
},
},
},
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/williamsl13/vue-scaffolding-learning.git
git@gitee.com:williamsl13/vue-scaffolding-learning.git
williamsl13
vue-scaffolding-learning
Vue2_尚硅谷学习
master

搜索帮助