1 Star 0 Fork 1

weizhang/Vue脚手架正式练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 826 Bytes
一键复制 编辑 原始数据 按行查看 历史
龙龙 提交于 2022-05-17 20:13 . 基于Vue脚手架的基础
// vue.config.js
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
pages: {
index: {
//入口
entry: 'src/main.js',
},
},
lintOnSave:false, //关闭语法检查
//开启代理服务器(方式一)
/* devServer: {
proxy: 'http://localhost:5000'
}, */
//开启代理服务器(方式二)
devServer: {
proxy: {
'/atguigu': {
target: 'http://localhost:5000',
pathRewrite:{'^/atguigu':''},
// ws: true, //用于支持websocket
// changeOrigin: true //用于控制请求头中的host值
},
'/demo': {
target: 'http://localhost:5001',
pathRewrite:{'^/demo':''},
// ws: true, //用于支持websocket
// changeOrigin: true //用于控制请求头中的host值
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/garry2020/vue-scaffold-formal-exercise.git
git@gitee.com:garry2020/vue-scaffold-formal-exercise.git
garry2020
vue-scaffold-formal-exercise
Vue脚手架正式练习
master

搜索帮助